f58acbeef5
Excludes stdlib projects from build and uses bootstrap stdlib artifacts #KT-29205
31 lines
556 B
Groovy
31 lines
556 B
Groovy
description = 'Kotlin Test Annotations Common'
|
|
|
|
apply plugin: 'kotlin-platform-common'
|
|
apply plugin: 'pill-configurable'
|
|
|
|
configureDist(project)
|
|
configurePublishing(project)
|
|
|
|
|
|
dependencies {
|
|
compile kotlinStdlib("common")
|
|
testCompile project(":kotlin-test:kotlin-test-common")
|
|
}
|
|
|
|
pill {
|
|
importAsLibrary = true
|
|
}
|
|
|
|
jar {
|
|
manifestAttributes(manifest, project, 'Test')
|
|
}
|
|
|
|
task sourcesJar(type: Jar, dependsOn: classes) {
|
|
classifier = 'sources'
|
|
from sourceSets.main.kotlin
|
|
}
|
|
|
|
artifacts {
|
|
archives sourcesJar
|
|
archives javadocJar
|
|
} |