-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
44 lines (32 loc) · 1.07 KB
/
build.gradle.kts
File metadata and controls
44 lines (32 loc) · 1.07 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
36
37
38
39
40
41
42
43
44
/*
* For more details on building Java & JVM projects, please refer to
* https://docs.gradle.org/8.13/userguide/building_java_projects.html in the Gradle documentation.
*/
plugins {
val kotlinVersion = "2.1.20"
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
id("org.jetbrains.dokka") version "1.9.20"
`java-library`
`java-test-fixtures`
}
group = "dev.hirth"
repositories {
mavenCentral()
}
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.1")
implementation("org.slf4j:slf4j-api:2.0.10")
testImplementation("org.xerial:sqlite-jdbc:3.49.1.0")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1")
testImplementation("org.junit.jupiter:junit-jupiter:5.12.1")
testImplementation("org.assertj:assertj-core:3.27.3")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testFixturesImplementation("org.assertj:assertj-core:3.27.3")
}
kotlin {
jvmToolchain(17)
}
tasks.named<Test>("test") {
useJUnitPlatform()
}