2018-11-22 23:22:24 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>Skyblock</artifactId>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-11-29 18:29:13 +01:00
|
|
|
<version>32</version>
|
2018-11-22 23:22:24 +01:00
|
|
|
<build>
|
2018-11-22 23:30:19 +01:00
|
|
|
<defaultGoal>clean package</defaultGoal>
|
2018-11-22 23:22:24 +01:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2018-11-22 23:30:19 +01:00
|
|
|
<version>3.6.1</version>
|
2018-11-22 23:22:24 +01: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-11-22 23:30:19 +01:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
2018-11-22 23:22:24 +01:00
|
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>private</id>
|
|
|
|
<url>http://repo.songoda.com/repository/private</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>be.maximvdw</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
|
|
|
<version>2.5.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
|
|
|
<version>LATEST</version>
|
|
|
|
</dependency>
|
2018-11-29 18:29:13 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl</groupId>
|
|
|
|
<artifactId>vault</artifactId>
|
|
|
|
<version>LATEST</version>
|
|
|
|
</dependency>
|
2018-11-22 23:30:19 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
|
|
|
<version>1.13.2</version>
|
|
|
|
</dependency>
|
2018-11-22 23:22:24 +01:00
|
|
|
</dependencies>
|
|
|
|
</project>
|