21 lines
462 B
Groovy
21 lines
462 B
Groovy
description = 'Kotlin Test Annotations Common'
|
|
|
|
apply plugin: 'kotlin-platform-common'
|
|
|
|
configurePublishing(project)
|
|
|
|
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() |