FabledSkyBlock/pom.xml
Unknown 59774f0e0e Build 38
# Added Console support to the command '/island admin delete', '/island admin owner', '/island admin reload', '/island admin removehologram', and '/island admin setsize'.
# Added a check when creating an island that checks if the spawn point has been set and if not an error message will be sent to the player.
# Added the setting 'ArmorStandPlacement' to the roles Visitor, Member, and Coop.
# Added the option to the configuration file to disable Island Coop.
# Added 'Coop Settings' to the 'Settings' menu.
# Added the setting 'Edit Coop Settings' to the 'Operator Settings' menu.
# Fixed players inventory not updating when interating with an item that is cancelled at an island if the player doesn't have permission.
# Fixed cobblestone generators not forming cobblestone when there are no generators or no materials in a generator.
# Fixed island operators being able to edit the island settings when they permission for that to do so has been disabled.
# Fixed NPE when a player doesn't have permission to change the permission of a setting when they've been removed access.
# Fixed the command '/island admin setsize' setting the size of the senders island when the target player is online.
# Fixed the command '/island admin owner' getting the island owner of the sender when the target player is online.
# Fixed the command '/island admin delete' deleting the senders island rather than the targets.
# Fixed NPE when a chance of a material for a generator is set to zero.
# Changed the unban item in the 'Operator Settings' menu from a name tag to a rose rose.
# Changed the setting name for 'ArmorStand' to 'ArmorStandUse'.
2018-12-04 19:21:46 +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>38</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>