blob: 2c8debe44bc3e3c7bf696c614888a68ddbf9562d [file] [log] [blame]
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
description = "Kotlin annotations for Android"
apply { plugin("kotlin") }
jvmTarget = "1.6"
javaHome = rootProject.extra["JDK_16"] as String
tasks.withType<KotlinCompile> {
kotlinOptions.freeCompilerArgs += listOf(
"-Xallow-kotlin-package",
"-module-name", project.name
)
}
sourceSets {
"main" {
projectDefault()
}
}
runtimeJar()
dist()