Fix compiler syntax errors in code snippets. Introduce documentation variables where applicable. Format source code. Optimize imports.
15 lines
389 B
Groovy
15 lines
389 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
apply from: MAVEN_POM_EDITOR_GRADLE
|
|
|
|
description = "Spring Boot Starter for Spring Session using VMware Tanzu GemFire"
|
|
|
|
dependencies {
|
|
|
|
compile project(':spring-gemfire-starter')
|
|
|
|
compile('org.springframework.session:spring-session-data-gemfire') {
|
|
exclude group: "org.apache.logging.log4j", module: "log4j-core"
|
|
}
|
|
|
|
}
|