aoc23/day05a/build.gradle.kts

21 lines
274 B
Plaintext
Raw Normal View History

2023-12-05 19:29:01 +00:00
plugins {
java
application
}
repositories {
mavenCentral()
}
tasks.withType<JavaExec> {
standardInput = System.`in`
}
application {
mainClass.set("sh.natty.aoc23.Main")
}
dependencies {
implementation("org.apache.commons:commons-lang3:3.14.0")
}