Files
kotlin-fork/libraries/kotlin.test/annotations-common/build.gradle
T
2020-06-14 20:31:26 +03:00

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()