Files
spring-cloud-connectors/spring-cloud-core/build.gradle
2014-05-13 17:53:57 -07:00

24 lines
409 B
Groovy

description = 'Spring-Cloud Core'
configurations {
tests
published.extendsFrom tests, archives
}
task testJar(type: Jar) {
classifier = 'tests'
from sourceSets.test.output.classesDir
}
testJar.dependsOn testClasses
build.dependsOn testJar
artifacts {
tests testJar
}
install {
configuration = configurations.published
}
tasks.findByPath("artifactoryPublish")?.publishConfigs ('published')