30 lines
584 B
Groovy
30 lines
584 B
Groovy
plugins {
|
|
id 'org.jetbrains.kotlin.jvm' version '1.4.30'
|
|
id 'application'
|
|
}
|
|
|
|
group 'io.github.wulkanowy'
|
|
version '0.1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
|
|
implementation 'com.github.wulkanowy:api:fe7ebc7c54'
|
|
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"
|
|
}
|