You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
371 B
18 lines
371 B
8 years ago
|
buildscript {
|
||
|
dependencies {
|
||
|
classpath "io.spring.gradle:dependency-management-plugin:0.5.2.RELEASE"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: "io.spring.dependency-management"
|
||
|
|
||
|
dependencyManagement {
|
||
|
imports {
|
||
|
mavenBom '{@= groupId @}:spring-cloud-commons-dependencies:{@= version @}'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile '{@= groupId @}:spring-cloud-starter'
|
||
|
}
|