You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
353 B

apply plugin: 'kotlin'
sourceCompatibility = 1.8
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
languageVersion = "1.2"
apiVersion = languageVersion
jvmTarget = "1.8"
}
}
dependencies {
compile project(":core")
compile "com.github.spullara.cli-parser:cli-parser:1.1.1"
}