2013-10-18 11:49:03 +00:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2015-04-15 04:06:16 +00:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2013-10-18 11:49:03 +00:00
|
|
|
|
2015-04-15 04:06:16 +00:00
|
|
|
<parent>
|
|
|
|
<groupId>net.ess3</groupId>
|
2015-07-29 21:22:10 +00:00
|
|
|
<artifactId>EssentialsXParent</artifactId>
|
2015-06-02 19:47:42 +00:00
|
|
|
<version>2.0.1</version>
|
2015-04-15 04:06:16 +00:00
|
|
|
</parent>
|
2013-10-18 11:49:03 +00:00
|
|
|
|
2015-04-24 20:32:50 +00:00
|
|
|
<artifactId>EssentialsXXMPP</artifactId>
|
2013-10-18 11:49:03 +00:00
|
|
|
|
2015-04-15 04:06:16 +00:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>GPLv3</name>
|
|
|
|
<url>http://www.gnu.org/copyleft/gpl.html</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
2013-10-18 11:49:03 +00:00
|
|
|
|
2015-04-15 04:06:16 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.ess3</groupId>
|
2015-05-24 23:02:40 +00:00
|
|
|
<artifactId>EssentialsX</artifactId>
|
2015-04-15 04:06:16 +00:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.igniterealtime.smack</groupId>
|
|
|
|
<artifactId>smack</artifactId>
|
|
|
|
<version>3.2.1</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2013-10-18 11:49:03 +00:00
|
|
|
|
2015-04-15 04:06:16 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>org.igniterealtime.smack:smack</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2013-10-18 11:49:03 +00:00
|
|
|
|
|
|
|
</project>
|