19 lines
383 B
Groovy
19 lines
383 B
Groovy
buildscript {
|
|
dependencies {
|
|
classpath "io.spring.gradle:dependency-management-plugin:0.4.0.RELEASE"
|
|
}
|
|
}
|
|
|
|
apply plugin: "io.spring.dependency-management"
|
|
|
|
dependencyManagement {
|
|
imports {
|
|
mavenBom '{@= groupId @}:spring-data-releasetrain:{@= version @}'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile '{@= groupId @}:spring-data-jpa'
|
|
compile '{@= groupId @}:spring-data-rest'
|
|
}
|