Add support for Glowstone

Glowstone doesn't yet support PlayerMoveEvent nor Scoreboards, so
functionality is unfortunately limited.
This commit is contained in:
eueln
2014-10-25 13:22:41 -05:00
committed by t00thpick1
parent 7f2ef4cbd5
commit 653f918a1b
17 changed files with 89 additions and 53 deletions

15
pom.xml
View File

@@ -44,6 +44,7 @@
<artifactSet>
<includes>
<include>mkremins:fanciful</include>
<include>com.google.code.gson:gson</include>
</includes>
</artifactSet>
<relocations>
@@ -51,6 +52,10 @@
<pattern>mkremins.fanciful</pattern>
<shadedPattern>com.massivecraft.factions.shade.mkremins.fanciful</shadedPattern>
</relocation>
<relocation>
<pattern>com.google</pattern>
<shadedPattern>com.massivecraft.factions.shade.com.google</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
@@ -71,11 +76,6 @@
<artifactId>bukkit</artifactId>
<version>1.7.10-R0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
<version>1.7.10-R0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>VaultAPI</artifactId>
@@ -109,6 +109,11 @@
<artifactId>fanciful</artifactId>
<version>0.2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.1</version>
</dependency>
</dependencies>
<repositories>