Files
spring-loaded/build.gradle
2014-02-24 16:36:51 -08:00

27 lines
484 B
Groovy

allprojects {
configurations {
tools
}
repositories {
mavenCentral()
maven {
url "http://maven.springframework.org/milestone"
}
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
apply from: "$rootDir/gradle/publish-maven.gradle"
sourceCompatibility = 1.6
targetCompatibility = 1.6
}
configure(subprojects.findAll { it.name.startsWith('testdata')}) {
tasks.findByPath("artifactoryPublish")?.enabled = false
}