@@ -14,38 +14,76 @@ dependencyResolutionManagement {
1414 versionCatalogs {
1515 create(" libs" ) {
1616
17+ // Non Paper
18+ version(" liquibase" , " 2.2.2" )
19+ version(" guava" , " 33.3.1-jre" )
20+ version(" jaxb-runtime" , " 4.0.5" )
21+ version(" caffeine" , " 3.2.2" )
22+ version(" h2" , " 2.3.232" )
23+ version(" mariadb-java-client" , " 3.5.4" )
24+ version(" hibernate-core" , " 7.0.6.Final" )
25+ version(" jetbrains-annotations" , " 26.0.2" )
26+ version(" postgresql" , " 42.7.7" )
27+ version(" gson" , " 2.13.1" )
28+
29+ // Testing
30+ version(" junit" , " 5.13.3" )
31+
32+ // Paper Dependencies
1733 version(" paper" , " 1.21.4-R0.1-SNAPSHOT" )
34+ version(" adventure-api" , " 4.23.0" )
35+ version(" cloud" , " 2.0.0-SNAPSHOT" )
36+ version(" cloudAnnotations" , " 2.0.0" )
37+ version(" adventure-platform-bukkit" , " 4.4.0" )
38+ version(" fawe" , " 2.13.0" )
39+ version(" worldguard" , " 7.1.0-SNAPSHOT" )
40+
41+ // Gradle Plugins
1842 version(" plugin.yml" , " 0.6.0" )
1943 version(" run-paper" , " 2.3.1" )
2044 version(" shadow" , " 8.1.1" )
21- version(" liquibase" , " 2.2.2" )
22- version(" guava" , " 33.3.1-jre" )
23-
24- plugin(" plugin.yml" , " net.minecrell.plugin-yml.paper" ).versionRef(" plugin.yml" )
25- plugin(" run.paper" , " xyz.jpenilla.run-paper" ).versionRef(" run-paper" )
26- plugin(" shadow" , " com.github.johnrengelman.shadow" ).versionRef(" shadow" )
27- plugin(" liquibase" , " org.liquibase.gradle" ).versionRef(" liquibase" )
2845
46+ // Paper
2947 library(" paper" , " io.papermc.paper" , " paper-api" ).versionRef(" paper" )
3048
3149 // Worldguard
32- library(" worldguard" , " com.sk89q.worldguard" , " worldguard-bukkit" ).version( " 7.1.0-SNAPSHOT " )
33- library(" fawe" , " com.fastasyncworldedit" , " FastAsyncWorldEdit-Bukkit" ).version( " 2.13.0 " )
34- library(" faweCore" , " com.fastasyncworldedit" , " FastAsyncWorldEdit-Core" ).version( " 2.13.0 " )
35- library(" jetbrainsAnnotations" , " org.jetbrains" , " annotations" ).version( " 26.0.2 " )
50+ library(" worldguard" , " com.sk89q.worldguard" , " worldguard-bukkit" ).versionRef( " worldguard " )
51+ library(" fawe" , " com.fastasyncworldedit" , " FastAsyncWorldEdit-Bukkit" ).versionRef( " fawe " )
52+ library(" faweCore" , " com.fastasyncworldedit" , " FastAsyncWorldEdit-Core" ).versionRef( " fawe " )
53+ library(" jetbrainsAnnotations" , " org.jetbrains" , " annotations" ).versionRef( " jetbrains-annotations " )
3654
3755 // Commands
38- library(" cloudPaper" , " org.incendo" , " cloud-paper" ).version(" 2.0.0-SNAPSHOT" )
39- library(" cloudAnnotations" , " org.incendo" , " cloud-annotations" ).version(" 2.0.0" )
40- library(" cloudMinecraftExtras" , " org.incendo" , " cloud-minecraft-extras" ).version(" 2.0.0-SNAPSHOT" )
41- library(" adventurePlatformBukkit" , " net.kyori" , " adventure-platform-bukkit" ).version(" 4.4.0" )
56+ library(" cloudPaper" , " org.incendo" , " cloud-paper" ).versionRef(" cloud" )
57+ library(" cloudAnnotations" , " org.incendo" , " cloud-annotations" ).versionRef(" cloudAnnotations" )
58+ library(" cloudMinecraftExtras" , " org.incendo" , " cloud-minecraft-extras" ).versionRef(" cloud" )
59+ library(" adventurePlatformBukkit" , " net.kyori" , " adventure-platform-bukkit" ).versionRef(" adventure-platform-bukkit" )
60+ library(" adventureApi" , " net.kyori" , " adventure-api" ).versionRef(" adventure-api" )
4261
43- library(" caffeine" , " com.github.ben-manes.caffeine" , " caffeine" ).version(" 3.2.2" )
62+ // Caching
63+ library(" caffeine" , " com.github.ben-manes.caffeine" , " caffeine" ).versionRef(" caffeine" )
4464
4565 // Database
46- library(" hibernateCore" , " org.hibernate" , " hibernate-core" ).version(" 7.0.6.Final" )
47- library(" mariadbJavaClient" ," org.mariadb.jdbc" , " mariadb-java-client" ).version(" 3.5.4" )
48- library(" hibernateHikariCP" ," org.hibernate.orm" , " hibernate-hikaricp" ).version(" 7.0.6.Final" )
66+ library(" hibernateCore" , " org.hibernate" , " hibernate-core" ).versionRef(" hibernate-core" )
67+ library(" mariadbJavaClient" ," org.mariadb.jdbc" , " mariadb-java-client" ).versionRef(" mariadb-java-client" )
68+ library(" hibernateHikariCP" ," org.hibernate.orm" , " hibernate-hikaricp" ).versionRef(" hibernate-core" )
69+ library(" postgresql" , " org.postgresql" , " postgresql" ).versionRef(" postgresql" )
70+ library(" h2" , " com.h2database" , " h2" ).versionRef(" h2" )
71+
72+ // XML
73+ library(" jaxbRuntime" , " org.glassfish.jaxb" , " jaxb-runtime" ).versionRef(" jaxb-runtime" )
74+
75+ // JSON
76+ library(" gson" , " com.google.code.gson" , " gson" ).versionRef(" gson" )
77+
78+ // Testing
79+ library(" junitBom" , " org.junit" , " junit-bom" ).versionRef(" junit" )
80+ library(" junitApi" , " org.junit.jupiter" , " junit-jupiter-api" ).withoutVersion()
81+
82+ // Plugins
83+ plugin(" plugin.yml" , " net.minecrell.plugin-yml.paper" ).versionRef(" plugin.yml" )
84+ plugin(" run.paper" , " xyz.jpenilla.run-paper" ).versionRef(" run-paper" )
85+ plugin(" shadow" , " com.github.johnrengelman.shadow" ).versionRef(" shadow" )
86+ plugin(" liquibase" , " org.liquibase.gradle" ).versionRef(" liquibase" )
4987 }
5088 }
5189}
0 commit comments