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
369 B
17 lines
369 B
7 years ago
|
buildscript {
|
||
|
dependencies {
|
||
|
classpath "io.spring.gradle:dependency-management-plugin:1.0.3.RELEASE"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: "io.spring.dependency-management"
|
||
|
|
||
|
dependencyManagement {
|
||
|
imports {
|
||
|
mavenBom '{@= groupId @}:spring-cloud-openfeign:{@= version @}'
|
||
|
}
|
||
|
}
|
||
|
dependencies {
|
||
|
compile '{@= groupId @}:spring-cloud-starter-openfeign'
|
||
|
}
|