blob: 5daf04f8d25d8ba2df6e9e5aae93f2ce509d6043 [file] [log] [blame]
description = 'Kotlin Test Common'
apply plugin: 'kotlin-platform-common'
configureDist(project)
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
}
classes.dependsOn.remove("compileJava")
artifacts {
archives sourcesJar
archives javadocJar
}