forked from jpgough/advent-of-tdd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
37 lines (29 loc) · 872 Bytes
/
build.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
37
plugins {
kotlin("jvm") version "1.9.22"
}
kotlin {
jvmToolchain(21)
}
repositories {
mavenCentral()
}
dependencies {
implementation("org.apache.commons:commons-collections4:4.4")
implementation("org.apache.commons:commons-geometry-euclidean:1.0")
implementation("commons-io:commons-io:2.15.1")
implementation("org.apache.commons:commons-lang3:3.14.0")
implementation("org.apache.commons:commons-math3:3.6.1")
implementation("com.google.guava:guava:33.0.0-jre")
implementation("org.jgrapht:jgrapht-core:1.5.2")
testImplementation("io.kotest:kotest-runner-junit5:5.8.0")
testImplementation("io.kotest:kotest-assertions-core:5.8.0")
testImplementation("io.kotest:kotest-framework-datatest:5.8.0")
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
}
}