FabledSkyBlock/pom.xml
Unknown 3aca100530 Build 43
# Added the command '/island value' to get the value (points) earned from a material in the players hand.
# Added the permission note 'skyblock.value' to perform the command '/island value'.
# Added the configurable option 'Island.Settings.Hunger' to enable/disable the 'Hunger' setting in the 'Island Settings' menu (Disabled by default).
# Added the 'Hunger' setting to the 'Island Settings' menu.
# Added the placeholder 'skyblock_island_invites' to get the active number of invites for the island.
# Added the placeholder 'skyblock_island_coops' to get the number of cooped players at the island.
# Added the placeholder 'skyblock_island_coops_total' to get the number of cooped players.
# Added economy support for Coins (https://www.spigotmc.org/resources/coins-1-8-x-1-12-x-mysql-sqlite-api.48536/).
# Fixed being able to go further than the end index of the help command pages.
# Fixed new settings being set to false when being added to the island.
2018-12-10 19:11:12 +00:00

53 lines
1.8 KiB
XML

<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">
<groupId>com.songoda</groupId>
<artifactId>SkyBlock</artifactId>
<modelVersion>4.0.0</modelVersion>
<version>43</version>
<build>
<defaultGoal>clean package</defaultGoal>
<plugins>
<plugin>
<version>3.6.1</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</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>
<dependency>
<groupId>net.milkbowl</groupId>
<artifactId>vault</artifactId>
<version>LATEST</version>
</dependency>
<dependency>
<groupId>net.nifheim.beelzubu</groupId>
<artifactId>coins</artifactId>
<version>2.3.2</version>
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
<version>1.13.2</version>
</dependency>
</dependencies>
</project>