Skip to content

Commit

Permalink
Reorder dependencies
Browse files Browse the repository at this point in the history
The Mojang dependency was blocking out the needed Google common
packages.
  • Loading branch information
tastybento committed Sep 24, 2021
1 parent ff231fa commit 7126acf
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<java.version>16</java.version>
<powermock.version>2.0.9</powermock.version>
<!-- More visible way how to change dependency versions -->
<spigot.version>1.17-R0.1-SNAPSHOT</spigot.version>
<spigot.version>1.17.1-R0.1-SNAPSHOT</spigot.version>
<spigot-annotations.version>1.2.3-SNAPSHOT</spigot-annotations.version>
<bentobox.version>1.17.3</bentobox.version>
<level.version>2.6.3</level.version>
Expand Down Expand Up @@ -93,13 +93,14 @@
</repository>
</distributionManagement>

<pluginRepositories>
<pluginRepository>
<id>apache.snapshots</id>
<url>https://repository.apache.org/snapshots/</url>
</pluginRepository>
</pluginRepositories>

<repositories>
<repository>
<!-- This is a temporary reference as the Maven Shade plugin
that supports Java 16 is not released yet -->
<id>maven-snapshots</id>
<url>https://repository.apache.org/content/repositories/snapshots/</url>
</repository>
<!-- Spigot Repo -->
<repository>
<id>spigot-repo</id>
Expand All @@ -123,13 +124,6 @@
</repositories>

<dependencies>
<!-- Mojang Auth-->
<dependency>
<groupId>com.mojang</groupId>
<artifactId>authlib</artifactId>
<version>1.5.21</version>
<scope>provided</scope>
</dependency>
<!-- Spigot API -->
<dependency>
<groupId>org.spigotmc</groupId>
Expand All @@ -156,7 +150,7 @@
<version>${vault.version}</version>
<scope>provided</scope>
</dependency>
<!-- BentoBox dependencies. -->
<!-- BentoBox dependencies. -->
<dependency>
<groupId>world.bentobox</groupId>
<artifactId>bentobox</artifactId>
Expand Down Expand Up @@ -194,6 +188,14 @@
<version>${powermock.version}</version>
<scope>test</scope>
</dependency>
<!-- Mojang Auth -->
<dependency>
<groupId>com.mojang</groupId>
<artifactId>authlib</artifactId>
<version>1.5.21</version>
<scope>provided</scope>
</dependency>

</dependencies>

<build>
Expand Down

0 comments on commit 7126acf

Please sign in to comment.