1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-31 10:11:46 +02:00

Pull geoip library from Maven

This commit is contained in:
Chris Ward
2013-12-26 01:12:04 +11:00
parent 8b26c7fc84
commit 7d7e87e63a
9 changed files with 30 additions and 16599 deletions

View File

@@ -47,5 +47,35 @@
<artifactId>Essentials</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.maxmind.geoip</groupId>
<artifactId>geoip-api</artifactId>
<version>1.2.11</version>
</dependency>
</dependencies>
<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>com.maxmind.geoip:geoip-api</include>
</includes>
</artifactSet>
</configuration>
</plugin>
</plugins>
</build>
</project>