Files
spring-ldap/gradle/java.gradle
Rob Winch 8b350a874d Convert to Gradle
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
2013-07-10 11:33:07 -05:00

19 lines
436 B
Groovy

apply plugin: 'java'
apply plugin: 'propdeps'
sourceCompatibility = '1.5'
targetCompatibility = '1.5'
ext.springVersion = '3.0.5.RELEASE'
ext.springBatchVersion = '2.0.3.RELEASE'
ext.junitVersion = '4.8.2'
ext.commonsPoolVersion = '1.5.4'
ext.commonsLangVersion = '2.4'
ext.commonsLoggingVersion = '1.0.4'
ext.easyMockVersion = '1.2_Java1.3'
ext.gsbaseVersion = '2.0.1'
ext.log4jVersion = '1.2.9'
repositories {
mavenCentral()
}