Files
spring-session/spring-session-samples/spring-session-sample-xml-redis/spring-session-sample-xml-redis.gradle
Eleftheria Stein 84fab2e2a9 Add buildSrc including build conventions plugins
Closes gh-1942
2021-10-29 13:30:29 +02:00

33 lines
1021 B
Groovy

plugins {
id "org.gretty" version "3.0.7"
id "io.spring.convention.spring-sample-war"
}
dependencies {
compile project(':spring-session-data-redis')
compile "org.springframework:spring-web"
compile "io.lettuce:lettuce-core"
compile "org.webjars:bootstrap"
compile "org.webjars:webjars-taglib"
compile "javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api"
compile "org.apache.taglibs:taglibs-standard-jstlel"
compile "org.slf4j:slf4j-api"
compile "org.slf4j:jcl-over-slf4j"
compile "org.slf4j:log4j-over-slf4j"
compile "ch.qos.logback:logback-classic"
compile "org.testcontainers:testcontainers"
providedCompile "javax.servlet:javax.servlet-api"
testCompile "org.assertj:assertj-core"
testCompile "org.junit.jupiter:junit-jupiter-api"
testRuntime "org.junit.jupiter:junit-jupiter-engine"
integrationTestCompile "org.seleniumhq.selenium:htmlunit-driver"
integrationTestCompile "org.seleniumhq.selenium:selenium-support"
}
gretty {
jvmArgs = ['-Dspring.profiles.active=embedded-redis']
}