23 lines
516 B
Groovy
23 lines
516 B
Groovy
apply from: JAVA_GRADLE
|
|
apply from: TOMCAT_7_GRADLE
|
|
|
|
tasks.findByPath("artifactoryPublish")?.enabled = false
|
|
|
|
sonarqube {
|
|
skipProject = true
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':spring-session-data-gemfire'),
|
|
"org.springframework:spring-web:$springVersion",
|
|
jstlDependencies
|
|
|
|
providedCompile "javax.servlet:javax.servlet-api:$servletApiVersion"
|
|
|
|
testCompile "junit:junit:$junitVersion"
|
|
|
|
integrationTestCompile gebDependencies
|
|
|
|
integrationTestRuntime "org.springframework.shell:spring-shell:1.0.0.RELEASE"
|
|
}
|