2018-10-18 22:04:56 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
|
|
|
<groupId>com.songoda</groupId>
|
2018-10-19 22:32:50 +02:00
|
|
|
<artifactId>EpicHeads</artifactId>
|
2018-09-21 03:42:18 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-12-13 19:01:22 +01:00
|
|
|
<version>2.3.3</version>
|
2018-09-21 03:42:18 +02:00
|
|
|
<build>
|
2018-10-18 22:04:56 +02:00
|
|
|
<defaultGoal>clean package</defaultGoal>
|
2018-09-21 03:42:18 +02:00
|
|
|
<plugins>
|
2018-10-18 22:04:56 +02:00
|
|
|
<!--<plugin>-->
|
|
|
|
<!--<groupId>org.codehaus.mojo</groupId>-->
|
|
|
|
<!--<artifactId>build-helper-maven-plugin</artifactId>-->
|
|
|
|
<!--<version>1.7</version>-->
|
|
|
|
<!--<executions>-->
|
|
|
|
<!--<execution>-->
|
|
|
|
<!--<id>add-source</id>-->
|
|
|
|
<!--<phase>generate-sources</phase>-->
|
|
|
|
<!--<goals>-->
|
|
|
|
<!--<goal>add-source</goal>-->
|
|
|
|
<!--</goals>-->
|
|
|
|
<!--<configuration>-->
|
|
|
|
<!--<sources>-->
|
|
|
|
<!--<source>EpicFarming-API/src/main/java</source>-->
|
|
|
|
<!--</sources>-->
|
|
|
|
<!--</configuration>-->
|
|
|
|
<!--</execution>-->
|
|
|
|
<!--</executions>-->
|
|
|
|
<!--</plugin>-->
|
2018-09-21 03:42:18 +02:00
|
|
|
<plugin>
|
2018-10-18 22:04:56 +02:00
|
|
|
<version>3.6.1</version>
|
2018-09-21 03:42:18 +02:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2018-10-18 22:04:56 +02:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>main/resources</directory>
|
2018-12-13 16:38:14 +01:00
|
|
|
<filtering>false</filtering>
|
2018-10-18 22:04:56 +02:00
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<sourceDirectory>main/java</sourceDirectory>
|
2018-09-21 03:42:18 +02:00
|
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
2018-10-18 22:04:56 +02:00
|
|
|
<id>private</id>
|
2019-04-25 02:35:19 +02:00
|
|
|
<url>http://repo.songoda.com/artifactory/private/</url>
|
2018-09-21 03:42:18 +02:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2018-10-18 22:04:56 +02:00
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
2019-04-25 02:35:19 +02:00
|
|
|
<version>1.14-pre5-2</version>
|
2018-10-18 22:04:56 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl</groupId>
|
|
|
|
<artifactId>vault</artifactId>
|
2019-04-25 02:35:19 +02:00
|
|
|
<version>1.7.1</version>
|
2018-10-18 22:04:56 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-04-25 02:35:19 +02:00
|
|
|
<groupId>org.black_ixx</groupId>
|
|
|
|
<artifactId>playerpoints</artifactId>
|
|
|
|
<version>2.1.4</version>
|
2018-10-18 22:04:56 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sothatsit</groupId>
|
|
|
|
<artifactId>blockstore</artifactId>
|
2019-04-25 02:35:19 +02:00
|
|
|
<version>1.5.0</version>
|
2018-09-21 03:42:18 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2018-10-18 22:04:56 +02:00
|
|
|
</project>
|