21 lines
No EOL
281 B
Text
21 lines
No EOL
281 B
Text
plugins {
|
|
kotlin("jvm") version "2.0.21"
|
|
}
|
|
|
|
group = "xyz.myriation.aoc2024.entrypoints"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
kotlin {
|
|
jvmToolchain(21)
|
|
} |