mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
21 lines
478 B
Groovy
21 lines
478 B
Groovy
description = 'Kotlin Test Annotations Common'
|
|
|
|
apply plugin: 'kotlin-platform-common'
|
|
|
|
JvmToolchain.updateJvmTarget(project, "1.6")
|
|
|
|
dependencies {
|
|
compile kotlinStdlib("common")
|
|
testCompile project(":kotlin-test:kotlin-test-common")
|
|
}
|
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.dsl.KotlinCompile) {
|
|
kotlinOptions.freeCompilerArgs += "-Xallow-kotlin-package"
|
|
}
|
|
|
|
jar {
|
|
manifestAttributes(manifest, project, 'Test')
|
|
}
|
|
|
|
configureSourcesJar()
|
|
configureJavadocJar() |