Force Bukkit version to match deps.

This commit is contained in:
KHobbits 2014-01-25 23:29:48 +00:00
parent 5070f15810
commit 1c035457bb
11 changed files with 49 additions and 28 deletions

View File

@ -42,6 +42,13 @@
</ciManagement> </ciManagement>
<dependencies> <dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.2-R0.3-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${project.basedir}/../lib/bukkit.jar</systemPath>
</dependency>
<dependency> <dependency>
<groupId>BOSEconomy</groupId> <groupId>BOSEconomy</groupId>
<artifactId>BOSEconomy</artifactId> <artifactId>BOSEconomy</artifactId>

View File

@ -474,49 +474,41 @@ public class OfflinePlayer implements Player
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public void removeAchievement(Achievement achievement) public void removeAchievement(Achievement achievement)
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public boolean hasAchievement(Achievement achievement) public boolean hasAchievement(Achievement achievement)
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public void incrementStatistic(Statistic ststc) public void incrementStatistic(Statistic ststc)
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public void decrementStatistic(Statistic statistic) throws IllegalArgumentException public void decrementStatistic(Statistic statistic) throws IllegalArgumentException
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public void incrementStatistic(Statistic ststc, int i) public void incrementStatistic(Statistic ststc, int i)
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public void decrementStatistic(Statistic statistic, int i) throws IllegalArgumentException public void decrementStatistic(Statistic statistic, int i) throws IllegalArgumentException
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public void setStatistic(Statistic statistic, int i) throws IllegalArgumentException public void setStatistic(Statistic statistic, int i) throws IllegalArgumentException
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public int getStatistic(Statistic statistic) throws IllegalArgumentException public int getStatistic(Statistic statistic) throws IllegalArgumentException
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
@ -528,67 +520,56 @@ public class OfflinePlayer implements Player
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public void decrementStatistic(Statistic statistic, Material material) throws IllegalArgumentException public void decrementStatistic(Statistic statistic, Material material) throws IllegalArgumentException
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public int getStatistic(Statistic statistic, Material material) throws IllegalArgumentException public int getStatistic(Statistic statistic, Material material) throws IllegalArgumentException
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public void incrementStatistic(Statistic ststc, Material mtrl, int i) public void incrementStatistic(Statistic ststc, Material mtrl, int i)
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public void decrementStatistic(Statistic statistic, Material material, int i) throws IllegalArgumentException public void decrementStatistic(Statistic statistic, Material material, int i) throws IllegalArgumentException
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public void setStatistic(Statistic statistic, Material material, int i) throws IllegalArgumentException public void setStatistic(Statistic statistic, Material material, int i) throws IllegalArgumentException
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public void incrementStatistic(Statistic statistic, EntityType entityType) throws IllegalArgumentException public void incrementStatistic(Statistic statistic, EntityType entityType) throws IllegalArgumentException
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public void decrementStatistic(Statistic statistic, EntityType entityType) throws IllegalArgumentException public void decrementStatistic(Statistic statistic, EntityType entityType) throws IllegalArgumentException
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public int getStatistic(Statistic statistic, EntityType entityType) throws IllegalArgumentException public int getStatistic(Statistic statistic, EntityType entityType) throws IllegalArgumentException
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public void incrementStatistic(Statistic statistic, EntityType entityType, int i) throws IllegalArgumentException public void incrementStatistic(Statistic statistic, EntityType entityType, int i) throws IllegalArgumentException
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public void decrementStatistic(Statistic statistic, EntityType entityType, int i) public void decrementStatistic(Statistic statistic, EntityType entityType, int i)
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));
} }
@Override
public void setStatistic(Statistic statistic, EntityType entityType, int i) public void setStatistic(Statistic statistic, EntityType entityType, int i)
{ {
throw new UnsupportedOperationException(_("notSupportedYet")); throw new UnsupportedOperationException(_("notSupportedYet"));

View File

@ -42,6 +42,13 @@
</ciManagement> </ciManagement>
<dependencies> <dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.2-R0.3-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${project.basedir}/../lib/bukkit.jar</systemPath>
</dependency>
<dependency> <dependency>
<groupId>net.ess3</groupId> <groupId>net.ess3</groupId>
<artifactId>Essentials</artifactId> <artifactId>Essentials</artifactId>

View File

@ -42,6 +42,13 @@
</ciManagement> </ciManagement>
<dependencies> <dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.2-R0.3-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${project.basedir}/../lib/bukkit.jar</systemPath>
</dependency>
<dependency> <dependency>
<groupId>net.ess3</groupId> <groupId>net.ess3</groupId>
<artifactId>Essentials</artifactId> <artifactId>Essentials</artifactId>

View File

@ -42,6 +42,13 @@
</ciManagement> </ciManagement>
<dependencies> <dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.2-R0.3-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${project.basedir}/../lib/bukkit.jar</systemPath>
</dependency>
<dependency> <dependency>
<groupId>net.ess3</groupId> <groupId>net.ess3</groupId>
<artifactId>Essentials</artifactId> <artifactId>Essentials</artifactId>

View File

@ -42,6 +42,13 @@
</ciManagement> </ciManagement>
<dependencies> <dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.2-R0.3-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${project.basedir}/../lib/bukkit.jar</systemPath>
</dependency>
<dependency> <dependency>
<groupId>net.ess3</groupId> <groupId>net.ess3</groupId>
<artifactId>Essentials</artifactId> <artifactId>Essentials</artifactId>

View File

@ -42,6 +42,13 @@
</ciManagement> </ciManagement>
<dependencies> <dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.2-R0.3-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${project.basedir}/../lib/bukkit.jar</systemPath>
</dependency>
<dependency> <dependency>
<groupId>net.ess3</groupId> <groupId>net.ess3</groupId>
<artifactId>Essentials</artifactId> <artifactId>Essentials</artifactId>

View File

@ -42,6 +42,13 @@
</ciManagement> </ciManagement>
<dependencies> <dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.2-R0.3-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${project.basedir}/../lib/bukkit.jar</systemPath>
</dependency>
<dependency> <dependency>
<groupId>net.ess3</groupId> <groupId>net.ess3</groupId>
<artifactId>Essentials</artifactId> <artifactId>Essentials</artifactId>

Binary file not shown.

Binary file not shown.

View File

@ -44,10 +44,6 @@
<id>ess-repo</id> <id>ess-repo</id>
<url>http://repo.ess3.net/content/groups/public</url> <url>http://repo.ess3.net/content/groups/public</url>
</repository> </repository>
<repository>
<id>bukkit-repo</id>
<url>http://repo.bukkit.org/content/groups/public</url>
</repository>
</repositories> </repositories>
<distributionManagement> <distributionManagement>
@ -72,11 +68,6 @@
</modules> </modules>
<dependencies> <dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.2-R0.3-SNAPSHOT</version>
</dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>