@@ -14,38 +14,76 @@ dependencyResolutionManagement {
14
14
versionCatalogs {
15
15
create(" libs" ) {
16
16
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
17
33
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
18
42
version(" plugin.yml" , " 0.6.0" )
19
43
version(" run-paper" , " 2.3.1" )
20
44
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" )
28
45
46
+ // Paper
29
47
library(" paper" , " io.papermc.paper" , " paper-api" ).versionRef(" paper" )
30
48
31
49
// 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 " )
36
54
37
55
// 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" )
42
61
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" )
44
64
45
65
// 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" )
49
87
}
50
88
}
51
89
}
0 commit comments