Files
spring-session-data-geode/samples/xml/gemfire-p2p/spring-session-sample-xml-gemfire-p2p.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

25 lines
684 B
Groovy

apply plugin: 'io.spring.convention.spring-sample-war'
dependencies {
compile project(':spring-session-data-geode')
compile "org.springframework:spring-web"
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"
}