Skip to content

Commit

Permalink
Avoid libraries re-download because of Snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
xism4 committed Jun 16, 2024
1 parent 617fbb6 commit 648f6fe
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class LibraryManager {

public static ArrayList<Library> libs = new ArrayList<>();

public static String ADVENTURE_VERSION = "4.17.0-SNAPSHOT";
public static String ADVENTURE_VERSION = "4.17.0";

public static ArrayList<Library> getLibs() {
return libs;
Expand All @@ -36,31 +36,31 @@ public static void load(){
Library adventureBukkitPlatform = Library.builder()
.groupId("net{}kyori")
.artifactId("adventure-platform-bukkit")
.version("4.3.3-SNAPSHOT")
.version("4.3.3")
.isolatedLoad(false)
.relocate("net{}kyori", "com{}xism4{}sternalboard{}libs{}kyori")
.build();

Library examination = Library.builder()
.groupId("net{}kyori")
.artifactId("examination-api")
.version("1.3.1-SNAPSHOT")
.version("1.3.0")
.isolatedLoad(false)
.relocate("net{}kyori", "com{}xism4{}sternalboard{}libs{}kyori")
.build();

Library adventurePlatformApi = Library.builder()
.groupId("net{}kyori")
.artifactId("adventure-platform-api")
.version("4.3.3-SNAPSHOT")
.version("4.3.3")
.isolatedLoad(false)
.relocate("net{}kyori", "com{}xism4{}sternalboard{}libs{}kyori")
.build();

Library adventurePlatformFacet = Library.builder()
.groupId("net{}kyori")
.artifactId("adventure-platform-facet")
.version("4.3.3-SNAPSHOT")
.version("4.3.3")
.isolatedLoad(false)
.relocate("net{}kyori", "com{}xism4{}sternalboard{}libs{}kyori")
.build();
Expand Down

0 comments on commit 648f6fe

Please sign in to comment.