7789054547
^KT-46972 Fixed
31 lines
539 B
Kotlin
31 lines
539 B
Kotlin
description = "Kotlin Android Extensions Runtime"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
project.updateJvmTarget("1.6")
|
|
|
|
dependencies {
|
|
compile(kotlinStdlib())
|
|
compileOnly(commonDep("com.google.android", "android"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|
|
publish()
|
|
|
|
runtimeJar()
|
|
sourcesJar()
|
|
javadocJar()
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
|
|
kotlinOptions {
|
|
freeCompilerArgs += "-Xsuppress-deprecated-jvm-target-warning"
|
|
}
|
|
}
|