Files
spring-boot-data-geode/spring-geode-samples/caching/look-aside/spring-geode-samples-caching-lookaside.gradle

24 lines
694 B
Groovy

apply plugin: 'io.spring.convention.spring-sample-boot'
description = "Spring Geode Sample demonstrating Spring's Cache Abstraction using Apache Geode as the caching provider for Look-Aside Caching."
dependencies {
compile project(":spring-geode-starter")
compile ("org.springframework.boot:spring-boot-starter-web") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
testCompile project(":spring-geode-starter-test")
testCompile("org.springframework.boot:spring-boot-starter-test") {
exclude group: "org.apache.logging.log4j", module: "log4j-to-slf4j"
}
}
bootJar {
mainClassName = 'example.app.caching.lookaside.BootGeodeLookAsideCachingApplication'
}