FabledSkyBlock/pom.xml
SystemEncryption 58510f2090 Build 50
# Added The End island world - Can be visited by entering an end portal at an island.
# Added the path 'Island.World.End' to the configuration file.
# Added the option 'Island.<world_environment>.Liquid.Lava' to the configuration file to enable lava world rather than water world.
# Added the option to the 'Structure Creator' menu to set the structure file for the end island.
# Added a few methods to the API to check if a player or location is at an island.
# Fixed players being unable to player dispensers or sticky pistons at a certain radius when the option 'Island.WorldBorder.Block' in the configuration file is enabled.
# Fixed visitors being teleported to the main spawn point rather than the visitor spawn point when they go outside an island.
# Fixed world border not being sent to the player when they're in a different world to the overworld.
# Fixed NPE when calling an island that hasn't loaded yet after changing the name of an island world.
# Fixed player not being give island cosmetics when they're a different world to the overworld.
# Fixed visitors being teleported to the main spawn point when they go through a portal.
# Fixed blocks being destroyed by fire when the 'FireSpread' setting is disabled.
# Fixed fire spread when the 'FireSpread' setting is disabled.
# Changed the path 'Island.World' in the language file.
# Made a few changes to the API - Take a look at the repository on GitLab.
# Improved a lot of code to do with the island worlds.
# The PAPI expansion has been approved on eCloud.
2018-12-16 16:33:50 +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>50</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>