2015-01-01 21:06:50 +01:00
|
|
|
<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>
|
|
|
|
<groupId>at.pcgamingfreaks</groupId>
|
|
|
|
<artifactId>MinePacks</artifactId>
|
2015-03-01 18:15:12 +01:00
|
|
|
<version>1.1.3</version>
|
2015-01-01 21:06:50 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
2015-02-27 12:57:06 +01:00
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
2015-01-01 21:06:50 +01:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<build>
|
2015-01-01 23:04:14 +01:00
|
|
|
<defaultGoal>clean install</defaultGoal>
|
2015-01-01 23:16:29 +01:00
|
|
|
<sourceDirectory>src</sourceDirectory>
|
2015-01-01 23:04:14 +01:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2015-01-01 23:34:10 +01:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-02-27 12:57:06 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
<minimizeJar>true</minimizeJar>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>com.google.code.gson:gson</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-01-01 23:34:10 +01:00
|
|
|
</plugins>
|
2015-01-01 21:06:50 +01:00
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2015-02-27 12:57:06 +01:00
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>2.3.1</version>
|
|
|
|
</dependency>
|
2015-01-01 21:06:50 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
2015-02-27 12:57:06 +01:00
|
|
|
<artifactId>bukkit</artifactId>
|
2015-01-01 21:06:50 +01:00
|
|
|
<version>LATEST</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|