18 lines
266 B
Groovy
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
|
|
} |