Files
Scott Frederick f58be0c8ca Cleanup build.
2018-11-16 17:20:43 -06:00

19 lines
255 B
Groovy

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