-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
34 lines (24 loc) · 1 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
rootProject.name = "BareBones"
include("key")
include("profile")
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 lombok: String by settings
library("lombok", "org.projectlombok:lombok:$lombok")
val googleGuava: String by settings
library("google-guava", "com.google.guava:guava:$googleGuava")
val googleGson: String by settings
library("google-gson", "com.google.code.gson:gson:$googleGson")
}
}
}