-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
32 lines (24 loc) · 1005 Bytes
/
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
rootProject.name = "Cogwheel"
include("cogwheel-core")
include("cogwheel-json")
include("cogwheel-yaml")
include("cogwheel-properties")
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 googleGson: String by settings
library("google-gson", "com.google.code.gson:gson:$googleGson")
val snakeyamlEngine: String by settings
library("snakeyaml-engine", "org.snakeyaml:snakeyaml-engine:$snakeyamlEngine")
}
}
}