22 lines
548 B
Groovy
22 lines
548 B
Groovy
apply from: JAVA_GRADLE
|
|
apply from: TOMCAT_6_GRADLE
|
|
apply from: SAMPLE_GRADLE
|
|
|
|
configurations {
|
|
compile.exclude group: 'org.slf4j', module: 'slf4j-api'
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':spring-session-data-redis'),
|
|
"org.springframework:spring-web:$springVersion",
|
|
"org.webjars:bootstrap:$bootstrapVersion",
|
|
"org.webjars:webjars-taglib:$webjarsTaglibVersion",
|
|
jstlDependencies
|
|
|
|
providedCompile "javax.servlet:javax.servlet-api:$servletApiVersion"
|
|
|
|
testCompile "junit:junit:$junitVersion"
|
|
|
|
integrationTestCompile gebDependencies
|
|
}
|