From dcc71e7ba99030c4141f3db0dc03f393c03173a1 Mon Sep 17 00:00:00 2001 From: Christian Koop Date: Sat, 22 Jun 2024 19:45:14 +0200 Subject: [PATCH] fix: update XSeries version in SongodaPlugin class to be same as pom.xml --- Core/src/main/java/com/craftaro/core/SongodaPlugin.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/main/java/com/craftaro/core/SongodaPlugin.java b/Core/src/main/java/com/craftaro/core/SongodaPlugin.java index 965d199e..9c63512e 100644 --- a/Core/src/main/java/com/craftaro/core/SongodaPlugin.java +++ b/Core/src/main/java/com/craftaro/core/SongodaPlugin.java @@ -110,7 +110,7 @@ public abstract class SongodaPlugin extends JavaPlugin { dependencies.add(new Dependency("https://repo1.maven.org/maven2", "com;h2database", "h2", "1.4.200", false, new Relocation("org;h2", "com;craftaro;third_party;org;h2")) // Custom relocation if the package names not match with the groupId ); - dependencies.add(new Dependency("https://repo1.maven.org/maven2", "com;github;cryptomorin", "XSeries", "10.0.0", false, + dependencies.add(new Dependency("https://repo1.maven.org/maven2", "com;github;cryptomorin", "XSeries", "11.1.0", false, new Relocation("com;cryptomorin;xseries", "com;craftaro;third_party;com;cryptomorin;xseries")) // Custom relocation if the package names not match with the groupId );