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
21 lines
758 B
Groovy
21 lines
758 B
Groovy
repositories {
|
|
maven { url "http://download.java.net/maven/2/" }
|
|
}
|
|
apply from: JAVA_SCRIPT
|
|
|
|
dependencies {
|
|
compile project(":spring-ldap-test"),
|
|
project(":spring-ldap-core-tiger")
|
|
|
|
provided "commons-pool:commons-pool:$commonsPoolVersion",
|
|
"org.springframework:spring-jdbc:$springVersion",
|
|
"org.springframework:spring-orm:$springVersion"
|
|
|
|
testCompile "org.springframework:spring-test:$springVersion",
|
|
"org.springframework:spring-aop:$springVersion",
|
|
"org.hibernate:hibernate:3.2.6.ga",
|
|
"aspectj:aspectjrt:1.5.3",
|
|
"aspectj:aspectjweaver:1.5.3",
|
|
"hsqldb:hsqldb:1.8.0.7",
|
|
"junit:junit:$junitVersion"
|
|
} |