-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsettings.gradle.kts
43 lines (31 loc) · 1.36 KB
/
settings.gradle.kts
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
rootProject.name = "Hippo"
pluginManagement {
includeBuild("build-logic")
}
include("asm-core")
include("magic-utils")
include("plugin")
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
val jetbrainsAnnotations: String by settings
library("jetbrains-annotations", "org.jetbrains:annotations:$jetbrainsAnnotations")
val junit: String by settings
library("junit-api", "org.junit.jupiter:junit-jupiter-api:$junit")
library("junit-engine", "org.junit.jupiter:junit-jupiter-engine:$junit")
library("junit-params", "org.junit.jupiter:junit-jupiter-params:$junit")
val junitLauncher: String by settings
library("junit-launcher", "org.junit.platform:junit-platform-launcher:$junitLauncher")
val spigotApi: String by settings
library("spigot-api", "org.spigotmc:spigot-api:$spigotApi")
val skript: String by settings
library("skript", "com.github.SkriptLang:Skript:$skript")
val asm: String by settings
library("asm", "org.ow2.asm:asm:$asm")
val shadow: String by settings
plugin("shadow", "com.gradleup.shadow").version(shadow)
val checkstyle: String by settings
plugin("checkstyle", "checkstyle").version(checkstyle)
}
}
}