16 lines
362 B
Groovy
16 lines
362 B
Groovy
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-sleuth:{@= version @}'
|
|
}
|
|
}
|
|
dependencies {
|
|
compile '{@= groupId @}:spring-cloud-starter-sleuth'
|
|
} |