Files
spring-boot-data-geode/spring-geode-samples/caching/inline/spring-geode-samples-caching-inline.gradle
2022-11-08 13:30:34 -08:00

34 lines
910 B
Groovy

plugins {
id "io.freefair.lombok" version "6.5.1"
}
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 {
implementation(project(":spring-geode-starter")) {
exclude group: "com.sun.xml.bind", module: "jaxb-impl"
}
implementation "org.projectlombok:lombok"
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.springframework.boot:spring-boot-starter-test"
}
bootJar {
mainClass = 'example.app.caching.inline.BootGeodeInlineCachingApplication'
}
bootRun {
mainClass = 'example.app.caching.inline.BootGeodeInlineCachingApplication'
}