31 lines
1.0 KiB
Groovy
31 lines
1.0 KiB
Groovy
plugins {
|
|
id "org.gretty" version "4.0.0"
|
|
id "io.spring.convention.spring-sample-war"
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':spring-session-data-redis')
|
|
implementation "org.springframework:spring-web"
|
|
implementation "io.lettuce:lettuce-core"
|
|
implementation "org.slf4j:slf4j-api"
|
|
implementation "org.slf4j:jcl-over-slf4j"
|
|
implementation "org.slf4j:log4j-over-slf4j"
|
|
implementation "ch.qos.logback:logback-classic"
|
|
implementation "org.testcontainers:testcontainers"
|
|
|
|
providedCompile "jakarta.servlet:jakarta.servlet-api"
|
|
providedCompile "org.glassfish.web:jakarta.servlet.jsp.jstl"
|
|
providedCompile "jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api"
|
|
|
|
testImplementation "org.assertj:assertj-core"
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api"
|
|
testRuntimeOnly "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']
|
|
}
|