FabledSkyBlock/pom.xml
Unknown fc6dafbe8d Build 39
# Added tab completion to the commands '/island leaderboard', '/island setspawn', '/island sethologram', and '/island removehologram'.
# Added the placeholder '%safety' to the Visit and Information menu to show if an island is safe for visitors.
# Added the setting 'ExperienceOrbPickup' to the roles Visitor, Member, and Coop.
# Added the option 'Island.Settings.KeepItemsOnDeath' to the configuration file.
# Added the option 'Island.Settings.Damage' to the configuration file.
# Added the option 'Island.Settings.PvP' to the configuration file.
# Added the setting 'Damage' to the 'Island Settings' menu.
# Added coop role to the 'Settings Editor' menu.
# Fixed creation message being sent to the player on island creation when the error message is sent when the main spawn point hasn't been set.
# Fixed new comments not being set in the configuration file (New comments however will appear at the end of a path).
# Fixed the permission note 'skyblock.information' not working for the command '/island information'.
# Fixed projectiles launched by players damaging entities when the setting 'MobHurting' is disabled.
# Fixed players being able to tame entities at an island when the setting 'MobTaming' is disabled.
# Fixed NPE generated by cobblestone generators when the index for the random material is zero.
# Fixed some water problems with the ore generators caused by water physics.
# Fixed '/island chat' enabling chat for other players on the island team.
# Fixed messages not being translated when island chat is enabled.
# Fixed custom entities not spawning in the island worlds.
# Fixed projectiles being under the wrong setting.
# Fixed a few mistakes in the 'language.yml' file.
# Recoded the 'Settings Editor' menu.
2018-12-06 20:52:09 +00:00

48 lines
1.7 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>39</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>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
<version>1.13.2</version>
</dependency>
</dependencies>
</project>