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

18 lines
476 B
Groovy

apply plugin: 'io.spring.convention.spring-module'
apply from: MAVEN_POM_EDITOR_GRADLE
description = "Spring Boot Starter for Pivotal GemFire"
dependencies {
compile(project(':spring-geode-starter')) {
exclude group: "org.springframework.data", module: "spring-data-geode"
}
compile("org.springframework.data:spring-data-gemfire") {
exclude group: "javax.servlet", module: "javax.servlet-api"
exclude group: "org.apache.logging.log4j", module: "log4j-core"
}
}