android13/external/dokka/runners/cli/build.gradle

17 lines
353 B
Groovy

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"
}