mirror of
https://github.com/spring-cloud/spring-cloud-netflix.git
synced 2026-09-25 21:39:00 +00:00
18 lines
365 B
Groovy
18 lines
365 B
Groovy
buildscript {
|
|
dependencies {
|
|
classpath "io.spring.gradle:dependency-management-plugin:0.5.6.RELEASE"
|
|
}
|
|
}
|
|
|
|
apply plugin: "io.spring.dependency-management"
|
|
|
|
dependencyManagement {
|
|
imports {
|
|
mavenBom '{@= groupId @}:spring-cloud-netflix:{@= version @}'
|
|
}
|
|
}
|
|
dependencies {
|
|
compile '{@= groupId @}:spring-cloud-starter-eureka'
|
|
}
|
|
|