Files
spring-loaded/build.gradle
Andy Clement 3552a1c3ca upgrade gradle
2017-03-21 14:54:03 -07:00

30 lines
548 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
}
task wrapper(type: Wrapper) {
gradleVersion = '3.4.1'
}