Files
spring-boot-data-geode/spring-geode-starter/spring-geode-starter.gradle

20 lines
428 B
Groovy

apply plugin: 'io.spring.convention.spring-module'
description = "Spring Boot Starter for Apache Geode"
dependencies {
compile("org.springframework.boot:spring-boot-starter") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
compile(project(':spring-geode'))
compile(project(':spring-geode-autoconfigure'))
runtime 'javax.cache:cache-api'
runtime 'org.springframework.shell:spring-shell'
}