blob: 98a3fac2dd04613218999aeac9c6ae0a15a8b190 [file] [log] [blame]
description = 'Kotlin Test Common'
apply plugin: 'kotlin-platform-common'
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
}