Files
spring-boot-data-geode/spring-geode-starter/spring-geode-starter.gradle
John Blum 9732d5e7f8 Remove the 'javax.cache:cache-api runtime dependency from the starters.
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.
2019-09-10 22:10:10 -07:00

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'
}