Essentials/EssentialsGeoIP/pom.xml

73 lines
2.5 KiB
XML
Raw Normal View History

2013-10-18 13:49:03 +02:00
<project xmlns="http://maven.apache.org/POM/4.0.0"
2015-04-15 06:06:16 +02: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 13:49:03 +02:00
2015-04-15 06:06:16 +02:00
<parent>
<groupId>net.ess3</groupId>
2015-07-29 23:22:10 +02:00
<artifactId>EssentialsXParent</artifactId>
2015-06-02 21:47:42 +02:00
<version>2.0.1</version>
2015-04-15 06:06:16 +02:00
</parent>
2013-10-18 13:49:03 +02:00
2015-04-24 22:32:50 +02:00
<artifactId>EssentialsXGeoIP</artifactId>
2013-10-18 13:49:03 +02:00
2015-04-15 06:06:16 +02:00
<licenses>
<license>
<name>GPLv3</name>
<url>http://www.gnu.org/copyleft/gpl.html</url>
</license>
</licenses>
2013-10-18 13:49:03 +02:00
2015-04-15 06:06:16 +02:00
<scm>
<connection>scm:git:https://github.com/essentials/Essentials.git</connection>
<developerConnection>scm:git:https://github.com/essentials/Essentials.git</developerConnection>
<url>https://github.com/essentials/Essentials</url>
</scm>
2013-10-18 13:49:03 +02:00
2015-04-15 06:06:16 +02:00
<dependencies>
<dependency>
2015-04-15 06:06:16 +02:00
<groupId>net.ess3</groupId>
<artifactId>EssentialsX</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.maxmind.geoip2</groupId>
<artifactId>geoip2</artifactId>
<version>0.7.2</version>
2015-04-15 06:06:16 +02:00
</dependency>
<dependency>
<groupId>javatar</groupId>
<artifactId>javatar</artifactId>
<version>2.5</version>
2015-04-15 06:06:16 +02:00
</dependency>
</dependencies>
2013-12-25 15:12:04 +01:00
2015-04-15 06:06:16 +02:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
2015-04-15 06:06:16 +02:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<minimizeJar>true</minimizeJar>
2015-04-15 06:06:16 +02:00
<artifactSet>
<includes>
<include>javatar:javatar</include>
<include>com.maxmind.geoip2:geoip2</include>
<include>com.maxmind.db:maxmind-db</include>
<include>com.fasterxml.jackson.core:*</include>
2015-04-15 06:06:16 +02:00
</includes>
</artifactSet>
</configuration>
</plugin>
</plugins>
</build>
2013-10-18 13:49:03 +02:00
</project>