Files
Scott Frederick a0bf3f11ca Cleanup build.
2018-11-16 17:31:13 -06:00

18 lines
266 B
Groovy

description = 'Spring Cloud Connectors Core'
configurations {
tests
}
task testJar(type: Jar) {
classifier = 'tests'
from sourceSets.test.output.classesDirs
}
testJar.dependsOn testClasses
build.dependsOn testJar
artifacts {
tests testJar
archives testJar
}