17 lines
192 B
Plaintext
17 lines
192 B
Plaintext
|
plugins {
|
||
|
java
|
||
|
application
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
tasks.withType<JavaExec> {
|
||
|
standardInput = System.`in`
|
||
|
}
|
||
|
|
||
|
application {
|
||
|
mainClass.set("sh.natty.aoc23.Main")
|
||
|
}
|