Files
spring-boot-data-geode/spring-geode-starter/spring-geode-starter.gradle
John Blum 34a69aa159 Refactor logging dependencies for SBDG Starters Gradle build files.
Remove the exclude on 'org.apache.logging.log4j:log4j-to-slf4j'.

Add an exclude on 'org.apache.logging.log4j:log4j-core'.

Resolves gh-42.
2019-08-21 11:56:32 -07:00

17 lines
386 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 'javax.cache:cache-api'
runtime 'org.springframework.shell:spring-shell'
}