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
801 B
Groovy
21 lines
801 B
Groovy
apply from: 'javacc.gradle'
|
|
|
|
dependencies {
|
|
compile "commons-logging:commons-logging:$commonsLoggingVersion",
|
|
"commons-lang:commons-lang:$commonsLangVersion",
|
|
"org.springframework:spring-core:$springVersion",
|
|
"org.springframework:spring-beans:$springVersion",
|
|
"org.springframework:spring-tx:$springVersion"
|
|
|
|
provided "commons-pool:commons-pool:$commonsPoolVersion",
|
|
"com.sun:ldapbp:1.0",
|
|
"org.springframework:spring-context:$springVersion",
|
|
"org.springframework:spring-jdbc:$springVersion",
|
|
"org.springframework:spring-orm:$springVersion"
|
|
|
|
testCompile "junit:junit:$junitVersion",
|
|
"easymock:easymock:$easyMockVersion",
|
|
"gsbase:gsbase:$gsbaseVersion"
|
|
}
|
|
|