Files
spring-loaded/build.gradle
2014-02-18 09:27:23 -08:00

26 lines
429 B
Groovy

allprojects {
configurations {
tools
}
repositories {
mavenCentral()
maven {
url "http://maven.springframework.org/milestone"
}
}
}
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
}