-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
29 lines (25 loc) · 1.28 KB
/
settings.gradle.kts
File metadata and controls
29 lines (25 loc) · 1.28 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
rootProject.name = "DaisyLib"
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
// compileOnly dependencies
library("paper-api", "io.papermc.paper:paper-api:26.1.1.build.+")
library("placeholderapi", "me.clip:placeholderapi:2.11.6")
library("vault", "com.github.MilkBowl:VaultAPI:1.7.1")
library("miniplaceholders", "io.github.miniplaceholders:miniplaceholders-api:3.1.0")
// implementation dependencies
library("bstats", "org.bstats:bstats-bukkit:3.1.0")
library("customblockdata", "com.jeff-media:custom-block-data:2.2.4")
library("messagelib", "uk.firedev:MessageLib:1.0.8")
library("configlib", "uk.firedev:ConfigLib:1.0.3")
// Loaded via Paper's library loader
library("nashorn", "org.openjdk.nashorn:nashorn-core:15.6")
library("vanishchecker", "uk.firedev:VanishChecker:1.0.5")
library("boostedyaml", "dev.dejvokep:boosted-yaml:1.3.7")
library("triumphgui", "dev.triumphteam:triumph-gui:3.1.11")
// Gradle plugins
plugin("shadow", "com.gradleup.shadow").version("9.0.0")
plugin("plugin-yml", "de.eldoria.plugin-yml.paper").version("0.9.0")
}
}
}