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.
16 lines
369 B
16 lines
369 B
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' |
|
}
|
|
|