Files
spring-loaded/build.gradle
2014-01-16 21:07:38 -06:00

27 lines
455 B
Groovy

allprojects {
configurations {
tools
}
repositories {
mavenCentral()
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = 1.6
targetCompatibility = 1.6
}
configure(subprojects.findAll { it.name.startsWith('testdata')}) {
tasks.findByPath("artifactoryPublish")?.enabled = false
}
configure(subprojects.findAll { it.name=='springloaded-core' }) {
apply plugin: 'maven'
}