Files
spring-boot-data-geode/spring-geode-samples/caching/inline/spring-geode-samples-caching-inline.gradle
2020-06-10 23:48:29 -07:00

32 lines
800 B
Groovy

plugins {
id "io.freefair.lombok" version "5.1.0"
}
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 Inline Caching."
dependencies {
compile project(":spring-geode-starter")
compile "org.projectlombok:lombok"
compile "org.springframework.boot:spring-boot-starter-data-jpa"
compile "org.springframework.boot:spring-boot-starter-web"
runtime "org.hsqldb:hsqldb"
testCompile project(":spring-geode-starter-test")
testCompile "org.springframework.boot:spring-boot-starter-test"
}
bootJar {
mainClassName = 'example.app.caching.inline.BootGeodeInlineCachingApplication'
}
bootRun {
main = 'example.app.caching.inline.BootGeodeInlineCachingApplication'
}