Files
kotlin-fork/libraries/kotlin.test/annotations-common/build.gradle
T
2018-05-15 16:29:47 +03:00

30 lines
507 B
Groovy

description = 'Kotlin Test Annotations Common'
apply plugin: 'kotlin-platform-common'
apply plugin: 'pill-configurable'
configureDist(project)
configurePublishing(project)
dependencies {
compile project(':kotlin-stdlib-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
}