30 lines
507 B
Groovy
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
|
|
} |