21 lines
664 B
Groovy
21 lines
664 B
Groovy
apply from: JAVA_GRADLE
|
|
apply from: TOMCAT_7_GRADLE
|
|
apply from: SAMPLE_GRADLE
|
|
|
|
dependencies {
|
|
compile project(':spring-session'),
|
|
"org.springframework:spring-web:$springVersion",
|
|
"org.springframework.security:spring-security-config:$springSecurityVersion",
|
|
"org.springframework.security:spring-security-web:$springSecurityVersion",
|
|
"org.webjars:bootstrap:$bootstrapVersion",
|
|
"com.hazelcast:hazelcast-client:$hazelcastVersion",
|
|
jstlDependencies
|
|
|
|
providedCompile "javax.servlet:javax.servlet-api:$servletApiVersion",
|
|
"javax.servlet:jsp-api:$jspApiVersion"
|
|
|
|
testCompile "junit:junit:$junitVersion"
|
|
|
|
integrationTestCompile gebDependencies
|
|
}
|