advent-of-code-2024/entrypoints/kotlin/build.gradle.kts

21 lines
281 B
Text
Raw Permalink Normal View History

2024-12-03 21:42:57 -07:00
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)
}