16 lines
481 B
Groovy
16 lines
481 B
Groovy
apply from: JAVA_SCRIPT
|
|
apply plugin: 'war'
|
|
apply plugin: 'jetty'
|
|
|
|
dependencies {
|
|
compile project(':spring-ldap-test'),
|
|
'log4j:log4j:1.2.9',
|
|
'javax.servlet:jstl:1.2',
|
|
"org.springframework:spring-context:$springVersion",
|
|
"org.springframework:spring-webmvc:$springVersion"
|
|
|
|
provided "javax.servlet:servlet-api:2.5"
|
|
|
|
testCompile "org.springframework:spring-test:$springVersion",
|
|
"junit:junit:$junitVersion"
|
|
} |