Files
spring-boot-data-geode/spring-geode-samples/caching/inline-async/spring-geode-samples-caching-inline-async.gradle
2022-07-19 17:57:28 -07:00

37 lines
1.1 KiB
Groovy

plugins {
id "io.freefair.lombok" version "6.5.0.3"
}
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 Asynchronous Inline Caching."
dependencies {
compileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"
implementation project(":spring-geode-starter")
implementation "org.projectlombok:lombok"
implementation "jakarta.persistence:jakarta.persistence-api"
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
implementation "org.springframework.boot:spring-boot-starter-web"
runtimeOnly "org.hsqldb:hsqldb"
testImplementation project(":spring-geode-starter-test")
testImplementation "org.awaitility:awaitility:$awaitilityVersion"
testImplementation "org.springframework.boot:spring-boot-starter-test"
}
bootJar {
mainClass = 'example.app.caching.inline.async.client.BootGeodeAsyncInlineCachingClientApplication'
}
bootRun {
main = 'example.app.caching.inline.async.client.BootGeodeAsyncInlineCachingClientApplication'
args "--spring.profiles.active=peer-cache,queue-batch-size,server"
}