Files
spring-boot-data-geode/spring-geode-samples/caching/multi-site/spring-geode-samples-caching-multisite.gradle
John Blum 52d873cac1 Cleanup Gradle build files.
Remove commented out configuration.

Remove 'org.springframework.geode:spring-geode-starter-logging' module from the runtiem classpath in the Multi-Site Caching Sample.
2020-12-11 13:22:19 -08:00

26 lines
592 B
Groovy

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