Files
spring-session-data-geode/samples/xml/gemfire-clientserver/spring-session-sample-xml-gemfire-clientserver.gradle

33 lines
853 B
Groovy

plugins {
id "org.gretty" version "4.0.0"
}
apply plugin: 'io.spring.convention.spring-sample-war'
apply plugin: "gemfire-server"
apply plugin: "application"
dependencies {
implementation project(':spring-session-data-geode')
implementation "org.springframework:spring-web"
implementation "org.springframework.data:spring-data-geode-test"
implementation "org.webjars:bootstrap"
implementation "org.webjars:webjars-taglib"
implementation jstlDependencies
implementation slf4jDependencies
providedCompile "jakarta.servlet:jakarta.servlet-api"
runtimeOnly "org.springframework.shell:spring-shell"
testImplementation "junit:junit"
testImplementation "org.assertj:assertj-core"
integrationTestCompile seleniumDependencies
integrationTestRuntime "org.springframework.shell:spring-shell"
}
mainClassName = "sample.server.GemFireServer"