26 lines
864 B
Groovy
26 lines
864 B
Groovy
apply from: JAVA_GRADLE
|
|
apply from: TOMCAT_7_GRADLE
|
|
apply from: SAMPLE_GRADLE
|
|
|
|
dependencies {
|
|
compile(project(':spring-session-data-redis')) {
|
|
exclude module: 'jedis'
|
|
}
|
|
compile "org.springframework:spring-web:$springVersion",
|
|
"org.springframework.security:spring-security-config:$springSecurityVersion",
|
|
"org.springframework.security:spring-security-web:$springSecurityVersion",
|
|
"biz.paluch.redis:lettuce:$lettuceVersion",
|
|
"org.webjars:bootstrap:$bootstrapVersion",
|
|
"org.webjars:webjars-taglib:$webjarsTaglibVersion",
|
|
jstlDependencies
|
|
|
|
providedCompile "javax.servlet:javax.servlet-api:$servletApiVersion",
|
|
"javax.servlet:jsp-api:$jspApiVersion"
|
|
|
|
testCompile "junit:junit:$junitVersion",
|
|
"org.assertj:assertj-core:$assertjVersion",
|
|
"org.springframework:spring-test:$springVersion"
|
|
|
|
integrationTestCompile seleniumDependencies
|
|
}
|