mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-03 09:30:28 +01:00
82ede4530a
Look at changed files for the changes
62 lines
2.2 KiB
XML
62 lines
2.2 KiB
XML
<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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>net.ess3</groupId>
|
|
<artifactId>EssentialsXParent</artifactId>
|
|
<version>2.16.0</version>
|
|
</parent>
|
|
|
|
<artifactId>EssentialsXGeoIP</artifactId>
|
|
|
|
<build>
|
|
<finalName>EssentialsXGeoIP-${full.version}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
<minimizeJar>true</minimizeJar>
|
|
<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>
|
|
</includes>
|
|
</artifactSet>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>net.ess3</groupId>
|
|
<artifactId>EssentialsX</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.maxmind.geoip2</groupId>
|
|
<artifactId>geoip2</artifactId>
|
|
<version>2.12.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javatar</groupId>
|
|
<artifactId>javatar</artifactId>
|
|
<version>2.5</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |