FabledSkyBlock/pom.xml
SystemEncryption 809520c861 Build 46
# Added the permission node 'skyblock.fly' that gives a player permission to fly when they enter an island.
# Added a cooldown for transferring island ownership to prevent unnecessary spam from players.
# Added the option 'Island.Ownership.Cooldown' to change the cooldown time when island ownership is transferred.
# Added the line breaker '\n' to messages in the 'language.yml' file.
# Added the alias '/island explore' to the command '/island visit'.
# Added exit item to the 'Island Ownership' menu.
# Fixed the scoreboard showing no color code for the suffix when the display line is equaled to 16 characters.
# Fixed format codes not showing color code when the display line is over 16 characters for the scoreboard.
# Fixed possible fall damage when teleporting to an island spawn point or main spawn point.
# Fixed levelling cooldown not being stopped when an island is removed.
# Changed argument to a method for transferring ownership in the API.
2018-12-13 12:18:35 +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>46</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>