- upgrade TestContainers to 1.7.1 - update Docker images - improve MariaDB/MySQL tests to use UTF-8 Closes gh-1034
27 lines
836 B
Groovy
27 lines
836 B
Groovy
apply plugin: 'io.spring.convention.spring-sample-war'
|
|
|
|
dependencies {
|
|
compile project(':spring-session-data-redis')
|
|
compile "io.lettuce:lettuce-core"
|
|
compile "org.springframework:spring-webmvc"
|
|
compile "org.springframework.security:spring-security-config"
|
|
compile "org.springframework.security:spring-security-web"
|
|
compile "com.fasterxml.jackson.core:jackson-databind"
|
|
compile jstlDependencies
|
|
compile slf4jDependencies
|
|
compile "org.testcontainers:testcontainers"
|
|
|
|
providedCompile "javax.servlet:javax.servlet-api"
|
|
|
|
testCompile "junit:junit"
|
|
testCompile "org.springframework.security:spring-security-test"
|
|
testCompile "org.assertj:assertj-core"
|
|
testCompile "org.springframework:spring-test"
|
|
|
|
integrationTestCompile "org.testcontainers:testcontainers"
|
|
}
|
|
|
|
gretty {
|
|
jvmArgs = ['-Dspring.profiles.active=embedded-redis']
|
|
}
|