-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
52 lines (40 loc) · 2.22 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
52 lines (40 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
rootProject.name = "PlayerKits"
dependencyResolutionManagement {
repositories {
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
maven("https://repo.papermc.io/repository/maven-public")
mavenCentral()
}
versionCatalogs {
create("libs") {
version("shadow", "9.4.2")
version("pluginYml", "0.6.0")
version("runPaper", "3.0.2")
version("hibernate", "7.4.3.Final")
version("jaxbRuntime", "4.0.9")
version("postgresql", "42.7.12")
//Paper
library("paper", "io.papermc.paper", "paper-api").version("26.1.2.build.+")
library("adventureBukkit", "net.kyori", "adventure-platform-bukkit").version("4.4.1")
//Cloud command framework
library("cloudPaper", "org.incendo", "cloud-paper").version("2.0.0-SNAPSHOT")
library("cloudAnnotations", "org.incendo", "cloud-annotations").version("2.0.0")
library("cloudExtras", "org.incendo", "cloud-minecraft-extras").version("2.0.0-SNAPSHOT")
library("commodore", "me.lucko", "commodore").version("2.2")
//Caching
library("caffeine", "com.github.ben-manes.caffeine", "caffeine").version("3.2.4")
// Database
library("hibernateCore", "org.hibernate.orm", "hibernate-core").versionRef("hibernate")
library("hibernateHikariCP", "org.hibernate.orm", "hibernate-hikaricp").versionRef("hibernate")
library("jaxbRuntime", "org.glassfish.jaxb", "jaxb-runtime").versionRef("jaxbRuntime")
library("postgresql", "org.postgresql", "postgresql").versionRef("postgresql")
//Testing
library("junitJupiterApi", "org.junit.jupiter", "junit-jupiter-api").version("6.1.1")
library("junitJupiterEngine", "org.junit.jupiter", "junit-jupiter-engine").withoutVersion()
bundle("hibernate", listOf("hibernateCore", "hibernateHikariCP"))
plugin("shadow", "com.gradleup.shadow").versionRef("shadow")
plugin("pluginYml", "net.minecrell.plugin-yml.paper").versionRef("pluginYml")
plugin("runPaper", "xyz.jpenilla.run-paper").versionRef("runPaper")
}
}
}