Files
kotlin-fork/libraries/kotlin.test/common/build.gradle
T
Ilya Gorbunov f002493218 Multiplatform test annotations
Actual annotations are provided in kotlin-test-junit on JVM side
and in kotlin-test-js on JS side.

#KT-19696
2017-10-15 17:40:53 +03:00

25 lines
472 B
Groovy

description = 'Kotlin Test Common'
apply plugin: 'kotlin-platform-common'
configurePublishing(project)
dependencies {
compile project(':kotlin-stdlib-common')
testCompile project(":kotlin-test:kotlin-test-annotations-common")
}
jar {
manifestAttributes(manifest, project, 'Test')
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.kotlin
}
artifacts {
archives sourcesJar
archives javadocJar
}