16 lines
148 B
Groovy
16 lines
148 B
Groovy
plugins {
|
|
id 'application'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
run {
|
|
standardInput = System.in
|
|
}
|
|
|
|
application {
|
|
mainClass = 'App'
|
|
}
|