26 lines
634 B
Groovy
26 lines
634 B
Groovy
plugins {
|
|
id "io.freefair.lombok" version "6.3.0"
|
|
}
|
|
|
|
apply plugin: 'io.spring.convention.spring-sample-boot'
|
|
|
|
description = "Spring Geode Sample for Multi-Site Caching."
|
|
|
|
dependencies {
|
|
|
|
implementation project(":spring-geode-starter")
|
|
|
|
implementation "org.assertj:assertj-core"
|
|
implementation "org.projectlombok:lombok"
|
|
implementation "org.springframework.boot:spring-boot-starter-web"
|
|
|
|
testImplementation project(":spring-geode-starter-test")
|
|
|
|
testImplementation "org.springframework.boot:spring-boot-starter-test"
|
|
|
|
}
|
|
|
|
bootJar {
|
|
mainClass = 'example.app.caching.multisite.client.BootGeodeMultiSiteCachingClientApplication'
|
|
}
|