x
<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>Tigase XMPP Server 5.1.0</name>
<version>5.1.0-SNAPSHOT</version>
<description>Tigase XMPP Server</description>
<url>http://www.tigase.org/</url>
<issueManagement>
<system>Redmine</system>
<url>https://projects.tigase.org/projects/tigase-server</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/trunk</connection>
<developerConnection>scm:svn:https://svn.tigase.org/reps/tigase-server/trunk</developerConnection>
<url>https://svn.tigase.org/reps/tigase-server</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>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>1.0-beta-7</version>
</extension>
</extensions>
</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.11-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>tigase</groupId>
<artifactId>tigase-xmltools</artifactId>
<version>3.3.6-SNAPSHOT</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>