Files
spring-session-data-geode/samples/xml/gemfire-clientserver/spring-session-sample-xml-gemfire-clientserver.gradle
John Blum 230cb21623 Replace Javax Servlet depedendencies with Jakarta Servlet.
Replace Javax Servlet JSP JSTL dependencies with Jakarta Servlet JSP JSTL dependencies and Apache Standard Taglibs.
2022-01-11 20:42:51 -08:00

30 lines
849 B
Groovy

apply plugin: 'io.spring.convention.spring-sample-war'
apply plugin: "gemfire-server"
apply plugin: "application"
dependencies {
compile project(':spring-session-data-geode')
compile "org.springframework:spring-web"
compile "org.springframework.data:spring-data-geode-test"
compile "org.webjars:bootstrap"
compile "org.webjars:webjars-taglib"
compile slf4jDependencies
providedCompile "jakarta.servlet:jakarta.servlet-api"
providedCompile "jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api"
providedCompile "org.apache.taglibs:taglibs-standard-jstlel"
runtime "org.springframework.shell:spring-shell"
testCompile "junit:junit"
testCompile "org.assertj:assertj-core"
integrationTestCompile seleniumDependencies
integrationTestRuntime "org.springframework.shell:spring-shell"
}
mainClassName = "sample.server.GemFireServer"