FabledSkyBlock/pom.xml
Unknown 4ddc7565dd Build 42
# Added the 'Island Border' menu for the island operators or owners to toggle the border or change the color of the border.
# Added the command '/island border' to open the 'Island Border' menu.
# Added the setting 'Border' to the Operator role.
# Added the option 'Island.Obsidian.Enable' to the configuration file to allow players to right-click obsidian with a bucket to become a lava bucket (This option is by default disabled).
# Added the alias '/island warp' to the command '/island teleport'.
# Added the alias '/island warps' to the command '/island visit'.
# Added the events 'PlayerIslandChatEvent', 'PlayerIslandChatSwitchEvent', 'PlayerIslandEnterEvent', 'PlayerIslandExitEvent', 'PlayerIslandJoinEvent', 'PlayerIslandLeaveEvent', 'PlayerIslandSwitchEvent', 'IslandInviteEvent', 'IslandKickEvent', and 'IslandUpgradeEvent' to the API.
# Fixed fly being disabled when a player teleports at a location inside the islands radius.
# Fixed players being able to use buckets at an island when they don't have permission to.
# Fixed cooped players being removed from the island when there no operator or owner is online.
# Fixed island unloading when there are no members occupying the island by cooped players.
# Fixed border of another island being sent to a visitor that isn't occupying the island.
# Fixed NSME when spawning an entity at a structure on island creation for 1.9 servers.
2018-12-09 22:13:00 +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>42</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>