Skip to content

Commit

Permalink
update bukkit 1.8 to spigot 1.12
Browse files Browse the repository at this point in the history
Geyser no longer supports versions below 1.12
The minecraft community has also moved on from 1.12 significantly

Signed-off-by: Konicai <[email protected]>
  • Loading branch information
Konicai committed Aug 28, 2021
1 parent 184cac5 commit 37ed4ad
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,15 @@

<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.8-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.SpigotMC.BungeeCord</groupId>
<artifactId>bungeecord-api</artifactId>
<version>bda1605627</version>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.12.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.SpigotMC.BungeeCord</groupId>
<artifactId>bungeecord-proxy</artifactId>
<!-- Provides easier access to BungeeCord class unavailable in the api -->
<!-- Provides easier access to BungeeCord classes unavailable in the api -->
<version>a7c6ede</version>
<scope>provided</scope>
</dependency>
Expand Down Expand Up @@ -129,7 +123,7 @@
<relocations>
<relocation>
<pattern>com.fasterxml.jackson</pattern>
<shadedPattern>dev.projectg.geyserupdater.shaded</shadedPattern>
<shadedPattern>dev.projectg.geyserupdater.shaded.jackson</shadedPattern>
</relocation>
</relocations>
</configuration>
Expand Down

1 comment on commit 37ed4ad

@Jens-Co
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fine for me to bump the mc version, especially since Geyser does not support it anyway.

Please sign in to comment.