Files
spring-cloud/_includes/build.gradle
2015-06-25 14:50:20 +01:00

18 lines
398 B
Groovy

buildscript {
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:0.4.0.RELEASE"
}
}
apply plugin: "io.spring.dependency-management"
dependencyManagement {
imports {
mavenBom '{@= groupId @}:{@= artifactId @}:{@= version @}'
}
}
dependencies {
compile '{@= groupId @}:spring-cloud-starter-config'
compile '{@= groupId @}:spring-cloud-starter-eureka'
}