summaryrefslogtreecommitdiffstats
path: root/EssentialsGeoIP/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsGeoIP/pom.xml')
-rw-r--r--EssentialsGeoIP/pom.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/EssentialsGeoIP/pom.xml b/EssentialsGeoIP/pom.xml
index 4a832e820..584b79e58 100644
--- a/EssentialsGeoIP/pom.xml
+++ b/EssentialsGeoIP/pom.xml
@@ -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> \ No newline at end of file