<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <modelVersion>4.0.0</modelVersion>
  <groupId>tigase</groupId>
  <artifactId>tigase-server</artifactId>
  <name>TigaseXMPPServer</name>
  <version>5.0.2</version>
  <description>Tigase XMPP Server</description>
  <url>http://www.tigase.org/</url>
  <issueManagement>
    <system>Trac</system>
    <url>http://projects.tigase.org/server/trac</url>
  </issueManagement>
  <developers>
    <developer>
      <id>kobit</id>
       <name>Artur Hefczyc</name>
       <email>kobit@tigase.org</email>
       <url>http://artur.hefczyc.net/</url>
       <roles>
         <role>architect</role>
         <role>developer</role>
       </roles>
    </developer>
  </developers>
  <licenses>
    <license>
      <name>GNU General Public License GPLv3</name>
      <url>https://svn.tigase.org/reps/tigase-server/trunk/COPYING</url>
    </license>
  </licenses>
  <scm>
    <connection>scm:svn:https://svn.tigase.org/reps/tigase-server/tags/tigase-server-5.0.2</connection>
    <developerConnection>scm:svn:https://svn.tigase.org/reps/tigase-server/tags/tigase-server-5.0.2</developerConnection>
    <url>scm:svn:https://svn.tigase.org/reps/tigase-server/tags/tigase-server-5.0.2</url>
  </scm>
  <organization>
    <name>Tigase</name>
    <url>http://www.tigase.org</url>
  </organization>
  <build>
    <plugins>
      <plugin>
      	<artifactId>maven-compiler-plugin</artifactId>
      	<configuration>
      		<source>1.6</source>
      		<target>1.6</target>
      		<encoding>UTF-8</encoding>
      	 <showDeprecation>true</showDeprecation>
      	</configuration>
      </plugin>
      <plugin>
      	<artifactId>maven-jar-plugin</artifactId>
      	<version>2.1</version>
      	<configuration>
      		<archive>
      			<manifest>
      				<packageName>tigase/</packageName>
      				<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
      				<mainClass>tigase.server.XMPPServer</mainClass>
      			</manifest>
      			<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
      		</archive>
      	</configuration>
      </plugin>
      <plugin>
      	<artifactId>maven-assembly-plugin</artifactId>
      	<version>2.0.1</version>
      	<configuration>
      		<descriptors>
      			<descriptor>src/main/assembly/prodenv.xml</descriptor>
      		</descriptors>
      		<finalName>${artifactId}-${version}</finalName>
      	</configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <configuration>
          <tagBase>https://svn.tigase.org/reps/tigase-server/tags</tagBase>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <repositories>
    <repository>
      <snapshots />
      <id>tigase</id>
      <name>Tigase rpos</name>
      <url>http://maven.tigase.org</url>
    </repository>
    <repository>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <id>central</id>
      <name>Maven Repository Switchboard</name>
      <url>http://repo1.maven.org/maven2</url>
    </repository>
  </repositories>
  <dependencies>
    <dependency>
      <groupId>tigase</groupId>
      <artifactId>tigase-utils</artifactId>
      <version>3.3.10</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>tigase</groupId>
      <artifactId>tigase-xmltools</artifactId>
      <version>3.3.4</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
  <distributionManagement>
    <repository>
      <id>tigase</id>
      <name>Tigase Repo</name>
      <url>scpexe://maven.tigase.org:/home/webapp/maven-repository</url>
    </repository>
    <snapshotRepository>
      <id>tigase</id>
      <name>Tigase Repo</name>
      <url>scpexe://maven.tigase.org:/home/webapp/maven-repository</url>
    </snapshotRepository>
  </distributionManagement>
</project>

