Declare Spring's Dependency Management Gradle Plugin to manage project dependency versions.
24 lines
525 B
Groovy
24 lines
525 B
Groovy
import org.springframework.boot.gradle.plugin.SpringBootPlugin
|
|
|
|
apply plugin: 'io.spring.convention.spring-module'
|
|
apply plugin: 'io.spring.dependency-management'
|
|
apply from: IDE_GRADLE
|
|
|
|
description = "Spring Session for Pivotal GemFire"
|
|
|
|
dependencyManagement {
|
|
imports {
|
|
mavenBom SpringBootPlugin.BOM_COORDINATES
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
compile(project(':spring-session-data-geode')) {
|
|
exclude group: "org.springframework.data", module: "spring-data-geode"
|
|
}
|
|
|
|
compile "org.springframework.data:spring-data-gemfire"
|
|
|
|
}
|