2019-01-26 23:11:40 +01:00
|
|
|
plugins {
|
2021-02-21 16:40:56 +01:00
|
|
|
id 'org.jetbrains.kotlin.jvm' version '1.4.30'
|
2019-01-26 23:11:40 +01:00
|
|
|
id 'application'
|
|
|
|
}
|
|
|
|
|
|
|
|
group 'io.github.wulkanowy'
|
|
|
|
version '0.1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2019-01-27 00:15:24 +01:00
|
|
|
maven { url 'https://jitpack.io' }
|
2019-01-26 23:11:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
|
|
|
2019-01-27 00:15:24 +01:00
|
|
|
implementation 'com.github.wulkanowy:api:fe7ebc7c54'
|
2019-01-26 23:11:40 +01:00
|
|
|
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"
|
|
|
|
}
|