This commit converts the build to a Gradle based build. It also setup sonar integration at https://sonar.springsource.org/dashboard/index/11620 Currently tests in the samples fail on the CI server and are disabled. The tests were not enabled for the maven based build either. Issue: LDAP-251
23 lines
901 B
Groovy
23 lines
901 B
Groovy
apply from: JAVA_SCRIPT
|
|
apply plugin: 'war'
|
|
apply plugin: 'jetty'
|
|
|
|
dependencies {
|
|
compile project(':spring-ldap-test'),
|
|
project(':spring-ldap-samples-utils'),
|
|
'log4j:log4j:1.2.9',
|
|
'javax.servlet:jstl:1.2',
|
|
"org.springframework:spring-beans:$springVersion",
|
|
"org.springframework:spring-core:$springVersion",
|
|
"org.springframework:spring-tx:$springVersion",
|
|
"org.springframework:spring-jdbc:$springVersion",
|
|
"org.springframework:spring-context:$springVersion",
|
|
"org.springframework:spring-web:$springVersion",
|
|
"org.springframework:spring-webmvc:$springVersion",
|
|
"org.springframework:spring-aop:$springVersion"
|
|
|
|
provided "javax.servlet:servlet-api:2.5"
|
|
|
|
testCompile "org.springframework:spring-test:$springVersion",
|
|
"junit:junit:$junitVersion"
|
|
} |