-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle.kts
36 lines (32 loc) · 1.43 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
rootProject.name = "nestalgia"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
buildCache {
local {
directory = File(rootDir, ".cache")
removeUnusedEntriesAfterDays = 30
}
}
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
library("okio", "com.squareup.okio:okio:3.9.1")
library("jackson", "com.fasterxml.jackson.core:jackson-databind:2.18.0")
library("csv", "de.siegmar:fastcsv:3.3.1")
library("oshi", "com.github.oshi:oshi-core:6.6.5")
library("compress", "org.apache.commons:commons-compress:1.27.1")
library("xz", "org.tukaani:xz:1.10")
library("xml", "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.18.0")
library("exposed-core", "org.jetbrains.exposed:exposed-core:0.55.0")
library("exposed-jdbc", "org.jetbrains.exposed:exposed-jdbc:0.55.0")
library("sqlite", "org.xerial:sqlite-jdbc:3.46.1.3")
library("logback", "ch.qos.logback:logback-classic:1.5.8")
library("kotest-assertions-core", "io.kotest:kotest-assertions-core:5.9.1")
library("kotest-runner-junit5", "io.kotest:kotest-runner-junit5:5.9.1")
bundle("kotest", listOf("kotest-assertions-core", "kotest-runner-junit5"))
bundle("exposed", listOf("exposed-core", "exposed-jdbc"))
}
}
}
include(":core")
include(":jmetro")
include(":desktop")