-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
35 lines (26 loc) · 1.12 KB
/
settings.gradle.kts
File metadata and controls
35 lines (26 loc) · 1.12 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
rootProject.name = "Scriptive"
include("scriptive-core")
include("scriptive-formatify")
include("scriptive-gson")
include("scriptive-nbt")
pluginManagement {
includeBuild("build-logic")
}
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 junitPlatform: String by settings
library("junit-platform-launcher", "org.junit.platform:junit-platform-launcher:$junitPlatform")
val googleGson: String by settings
library("google-gson", "com.google.code.gson:gson:$googleGson")
val machineNbt: String by settings
library("machinemc-nbt", "org.machinemc:nbt-core:$machineNbt")
}
}
}