FabledSkyBlock/pom.xml

70 lines
2.6 KiB
XML
Raw Normal View History

<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>
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 21:52:09 +01:00
<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>
2018-12-07 17:24:11 +01:00
<plugin>
<version>3.0.1</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<reportOutputDirectory>${basedir}</reportOutputDirectory>
<destDir>apidocs</destDir>
2018-12-07 17:59:51 +01:00
<source>39</source>
<show>public</show>
<doctitle>SkyBlock API</doctitle>
<title>SkyBlock API</title>
2018-12-07 17:24:11 +01:00
<sourcepath>${basedir}/src/main/java/me/goodandevil/skyblock/api</sourcepath>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</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>
2018-11-22 23:22:24 +01:00
</project>