advent-of-code-2024/entrypoints/kotlin/build.gradle.kts
2024-12-08 01:12:44 -07:00

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)
}