19 lines
255 B
Groovy
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
|
|
}
|