Remove the exclude on 'org.apache.logging.log4j:log4j-to-slf4j'. Add an exclude on 'org.apache.logging.log4j:log4j-core'. Resolves gh-42.
17 lines
386 B
Groovy
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'
|
|
|
|
}
|