13 lines
203 B
Groovy
13 lines
203 B
Groovy
plugins {
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
id 'application'
|
|
}
|
|
|
|
application {
|
|
mainClass = 'com.correx.apps.cli.MainKt'
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.github.ajalt.clikt:clikt:5.0.1"
|
|
}
|