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.
17 lines
371 B
17 lines
371 B
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' |
|
}
|
|
|