Skip to content

Commit 1c03545

Browse files
committed
Force Bukkit version to match deps.
1 parent 5070f15 commit 1c03545

File tree

11 files changed

+49
-28
lines changed

11 files changed

+49
-28
lines changed

Essentials/pom.xml

+7
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@
4242
</ciManagement>
4343

4444
<dependencies>
45+
<dependency>
46+
<groupId>org.bukkit</groupId>
47+
<artifactId>bukkit</artifactId>
48+
<version>1.7.2-R0.3-SNAPSHOT</version>
49+
<scope>system</scope>
50+
<systemPath>${project.basedir}/../lib/bukkit.jar</systemPath>
51+
</dependency>
4552
<dependency>
4653
<groupId>BOSEconomy</groupId>
4754
<artifactId>BOSEconomy</artifactId>

Essentials/src/com/earth2me/essentials/OfflinePlayer.java

-19
Original file line numberDiff line numberDiff line change
@@ -474,49 +474,41 @@ public void awardAchievement(Achievement a)
474474
throw new UnsupportedOperationException(_("notSupportedYet"));
475475
}
476476

477-
@Override
478477
public void removeAchievement(Achievement achievement)
479478
{
480479
throw new UnsupportedOperationException(_("notSupportedYet"));
481480
}
482481

483-
@Override
484482
public boolean hasAchievement(Achievement achievement)
485483
{
486484
throw new UnsupportedOperationException(_("notSupportedYet"));
487485
}
488486

489-
@Override
490487
public void incrementStatistic(Statistic ststc)
491488
{
492489
throw new UnsupportedOperationException(_("notSupportedYet"));
493490
}
494491

495-
@Override
496492
public void decrementStatistic(Statistic statistic) throws IllegalArgumentException
497493
{
498494
throw new UnsupportedOperationException(_("notSupportedYet"));
499495
}
500496

501-
@Override
502497
public void incrementStatistic(Statistic ststc, int i)
503498
{
504499
throw new UnsupportedOperationException(_("notSupportedYet"));
505500
}
506501

507-
@Override
508502
public void decrementStatistic(Statistic statistic, int i) throws IllegalArgumentException
509503
{
510504
throw new UnsupportedOperationException(_("notSupportedYet"));
511505
}
512506

513-
@Override
514507
public void setStatistic(Statistic statistic, int i) throws IllegalArgumentException
515508
{
516509
throw new UnsupportedOperationException(_("notSupportedYet"));
517510
}
518511

519-
@Override
520512
public int getStatistic(Statistic statistic) throws IllegalArgumentException
521513
{
522514
throw new UnsupportedOperationException(_("notSupportedYet"));
@@ -528,67 +520,56 @@ public void incrementStatistic(Statistic ststc, Material mtrl)
528520
throw new UnsupportedOperationException(_("notSupportedYet"));
529521
}
530522

531-
@Override
532523
public void decrementStatistic(Statistic statistic, Material material) throws IllegalArgumentException
533524
{
534525
throw new UnsupportedOperationException(_("notSupportedYet"));
535526
}
536527

537-
@Override
538528
public int getStatistic(Statistic statistic, Material material) throws IllegalArgumentException
539529
{
540530
throw new UnsupportedOperationException(_("notSupportedYet"));
541531
}
542532

543-
@Override
544533
public void incrementStatistic(Statistic ststc, Material mtrl, int i)
545534
{
546535
throw new UnsupportedOperationException(_("notSupportedYet"));
547536
}
548537

549-
@Override
550538
public void decrementStatistic(Statistic statistic, Material material, int i) throws IllegalArgumentException
551539
{
552540
throw new UnsupportedOperationException(_("notSupportedYet"));
553541
}
554542

555-
@Override
556543
public void setStatistic(Statistic statistic, Material material, int i) throws IllegalArgumentException
557544
{
558545
throw new UnsupportedOperationException(_("notSupportedYet"));
559546
}
560547

561-
@Override
562548
public void incrementStatistic(Statistic statistic, EntityType entityType) throws IllegalArgumentException
563549
{
564550
throw new UnsupportedOperationException(_("notSupportedYet"));
565551
}
566552

567-
@Override
568553
public void decrementStatistic(Statistic statistic, EntityType entityType) throws IllegalArgumentException
569554
{
570555
throw new UnsupportedOperationException(_("notSupportedYet"));
571556
}
572557

573-
@Override
574558
public int getStatistic(Statistic statistic, EntityType entityType) throws IllegalArgumentException
575559
{
576560
throw new UnsupportedOperationException(_("notSupportedYet"));
577561
}
578562

579-
@Override
580563
public void incrementStatistic(Statistic statistic, EntityType entityType, int i) throws IllegalArgumentException
581564
{
582565
throw new UnsupportedOperationException(_("notSupportedYet"));
583566
}
584567

585-
@Override
586568
public void decrementStatistic(Statistic statistic, EntityType entityType, int i)
587569
{
588570
throw new UnsupportedOperationException(_("notSupportedYet"));
589571
}
590572

591-
@Override
592573
public void setStatistic(Statistic statistic, EntityType entityType, int i)
593574
{
594575
throw new UnsupportedOperationException(_("notSupportedYet"));

EssentialsAntiBuild/pom.xml

+7
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@
4242
</ciManagement>
4343

4444
<dependencies>
45+
<dependency>
46+
<groupId>org.bukkit</groupId>
47+
<artifactId>bukkit</artifactId>
48+
<version>1.7.2-R0.3-SNAPSHOT</version>
49+
<scope>system</scope>
50+
<systemPath>${project.basedir}/../lib/bukkit.jar</systemPath>
51+
</dependency>
4552
<dependency>
4653
<groupId>net.ess3</groupId>
4754
<artifactId>Essentials</artifactId>

EssentialsChat/pom.xml

+7
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@
4242
</ciManagement>
4343

4444
<dependencies>
45+
<dependency>
46+
<groupId>org.bukkit</groupId>
47+
<artifactId>bukkit</artifactId>
48+
<version>1.7.2-R0.3-SNAPSHOT</version>
49+
<scope>system</scope>
50+
<systemPath>${project.basedir}/../lib/bukkit.jar</systemPath>
51+
</dependency>
4552
<dependency>
4653
<groupId>net.ess3</groupId>
4754
<artifactId>Essentials</artifactId>

EssentialsGeoIP/pom.xml

+7
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@
4242
</ciManagement>
4343

4444
<dependencies>
45+
<dependency>
46+
<groupId>org.bukkit</groupId>
47+
<artifactId>bukkit</artifactId>
48+
<version>1.7.2-R0.3-SNAPSHOT</version>
49+
<scope>system</scope>
50+
<systemPath>${project.basedir}/../lib/bukkit.jar</systemPath>
51+
</dependency>
4552
<dependency>
4653
<groupId>net.ess3</groupId>
4754
<artifactId>Essentials</artifactId>

EssentialsProtect/pom.xml

+7
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@
4242
</ciManagement>
4343

4444
<dependencies>
45+
<dependency>
46+
<groupId>org.bukkit</groupId>
47+
<artifactId>bukkit</artifactId>
48+
<version>1.7.2-R0.3-SNAPSHOT</version>
49+
<scope>system</scope>
50+
<systemPath>${project.basedir}/../lib/bukkit.jar</systemPath>
51+
</dependency>
4552
<dependency>
4653
<groupId>net.ess3</groupId>
4754
<artifactId>Essentials</artifactId>

EssentialsSpawn/pom.xml

+7
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@
4242
</ciManagement>
4343

4444
<dependencies>
45+
<dependency>
46+
<groupId>org.bukkit</groupId>
47+
<artifactId>bukkit</artifactId>
48+
<version>1.7.2-R0.3-SNAPSHOT</version>
49+
<scope>system</scope>
50+
<systemPath>${project.basedir}/../lib/bukkit.jar</systemPath>
51+
</dependency>
4552
<dependency>
4653
<groupId>net.ess3</groupId>
4754
<artifactId>Essentials</artifactId>

EssentialsXMPP/pom.xml

+7
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@
4242
</ciManagement>
4343

4444
<dependencies>
45+
<dependency>
46+
<groupId>org.bukkit</groupId>
47+
<artifactId>bukkit</artifactId>
48+
<version>1.7.2-R0.3-SNAPSHOT</version>
49+
<scope>system</scope>
50+
<systemPath>${project.basedir}/../lib/bukkit.jar</systemPath>
51+
</dependency>
4552
<dependency>
4653
<groupId>net.ess3</groupId>
4754
<artifactId>Essentials</artifactId>

lib/bukkit.jar

4.84 KB
Binary file not shown.

lib/craftbukkit.jar

6.5 KB
Binary file not shown.

pom.xml

-9
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,6 @@
4444
<id>ess-repo</id>
4545
<url>http://repo.ess3.net/content/groups/public</url>
4646
</repository>
47-
<repository>
48-
<id>bukkit-repo</id>
49-
<url>http://repo.bukkit.org/content/groups/public</url>
50-
</repository>
5147
</repositories>
5248

5349
<distributionManagement>
@@ -72,11 +68,6 @@
7268
</modules>
7369

7470
<dependencies>
75-
<dependency>
76-
<groupId>org.bukkit</groupId>
77-
<artifactId>bukkit</artifactId>
78-
<version>1.7.2-R0.3-SNAPSHOT</version>
79-
</dependency>
8071
<dependency>
8172
<groupId>junit</groupId>
8273
<artifactId>junit</artifactId>

0 commit comments

Comments
 (0)