The JSR-107, JCache API is no longer a required runtime dependency for Spring Data for Apache Geode & Pivotal GemFire as of SDG Moore-RC3/2.2.0.RC3 release. See https://jira.spring.io/browse/DATAGEODE-225 & https://jira.spring.io/browse/SGF-808 for more details. Resolves gh-45.
16 lines
351 B
Groovy
16 lines
351 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
apply from: MAVEN_POM_EDITOR_GRADLE
|
|
|
|
description = "Spring Boot Starter for Apache Geode"
|
|
|
|
dependencies {
|
|
|
|
compile "org.springframework.boot:spring-boot-starter"
|
|
|
|
compile project(':spring-geode')
|
|
compile project(':spring-geode-autoconfigure')
|
|
|
|
runtime 'org.springframework.shell:spring-shell'
|
|
|
|
}
|