Files
kotlin-fork/libraries/kotlin.test/annotations-common/build.gradle
T
Alexey Tsvetkov 29d2679e8d Do not configure dist task for every published module
This change avoids compiling kotlin-compiler-embeddable,
kotlin-gradle-plugin, and other gradle plugins,
when running `./gradlew dist`
2018-02-01 17:39:55 +03:00

25 lines
436 B
Groovy

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