FabledSkyBlock/pom.xml
SystemEncryption 99496b598b Build 45
# Added the permission note 'skyblock.bypass.cooldown' to bypass the biome, island creation, or island deletion cooldown timer.
# Confirmation Messages are now configurable in the 'language.yml' file. Use the variable '%confirm' to add clickable message.
# Cancellation Messages are now configurable in the 'language.yml' file. Use the variable '%cancel' to add clickable message.
# Added placeholder support to chat component messages (Confirmation and Cancellation Messages).
# Fixed the border not being removed when visiting another players island from your island or another players island when their border is disabled.
# Fixed cobblestone generators not generating cobblestone when a player doesn't have permission to use any generators.
# Fixed the scoreboard not being initialized when re-enabled in the configuration file when using the command '/island admin reload'.
# Fixed levelling materials not being reloaded when using the command '/island admin reload'.
# Fixed generators not being reloaded when using the command '/island admin reload'.
# Corrected the info message for the command '/island admin removeupgrade'.
2018-12-12 14:37:07 +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>45</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>