blob: b89e309b4ac0c6e0d7b2b111308560db8bf6d0e5 [file] [log] [blame]
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
}