29 lines
488 B
Groovy
29 lines
488 B
Groovy
|
plugins {
|
||
|
id 'org.jetbrains.kotlin.jvm' version '1.3.20'
|
||
|
id 'application'
|
||
|
}
|
||
|
|
||
|
group 'io.github.wulkanowy'
|
||
|
version '0.1.0-SNAPSHOT'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
||
|
|
||
|
implementation 'com.github.ajalt:clikt:1.6.0'
|
||
|
}
|
||
|
|
||
|
application {
|
||
|
mainClassName = "io.github.wulkanowy.cli.MainKt"
|
||
|
}
|
||
|
|
||
|
compileKotlin {
|
||
|
kotlinOptions.jvmTarget = "1.8"
|
||
|
}
|
||
|
compileTestKotlin {
|
||
|
kotlinOptions.jvmTarget = "1.8"
|
||
|
}
|