2010-03-28 18:54:41 -04:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'eclipse'
|
2010-03-03 10:40:57 -05:00
|
|
|
|
2010-08-21 09:15:54 -04:00
|
|
|
springVersion = '3.0.4.RELEASE'
|
2010-03-03 10:40:57 -05:00
|
|
|
springLdapVersion = '1.3.0.RELEASE'
|
|
|
|
ehcacheVersion = '1.6.2'
|
2010-08-06 08:34:30 -04:00
|
|
|
aspectjVersion = '1.6.9'
|
2010-03-03 10:40:57 -05:00
|
|
|
apacheDsVersion = '1.5.5'
|
2010-07-20 18:45:20 -04:00
|
|
|
jstlVersion = '1.2'
|
2010-03-03 10:40:57 -05:00
|
|
|
jettyVersion = '6.1.22'
|
|
|
|
hsqlVersion = '1.8.0.10'
|
2010-07-12 07:30:21 -04:00
|
|
|
slf4jVersion = '1.6.1'
|
|
|
|
logbackVersion = '0.9.24'
|
2010-03-03 10:40:57 -05:00
|
|
|
|
|
|
|
configurations {
|
2010-07-22 20:57:15 -04:00
|
|
|
// Configuration which is ONLY used for compileJava and will not be inherited by any others
|
|
|
|
// Revisit post Gradle 1.0
|
|
|
|
compileOnly
|
2010-08-19 17:41:51 -04:00
|
|
|
// Used to identify deps which should be marked as "provided" in maven poms
|
2010-03-03 10:40:57 -05:00
|
|
|
provided
|
2010-08-19 17:41:51 -04:00
|
|
|
testCompile.extendsFrom provided
|
2010-07-12 07:30:21 -04:00
|
|
|
compile.transitive = false
|
2010-07-26 21:16:39 -04:00
|
|
|
testCompile.transitive = false
|
2010-03-03 10:40:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2010-07-22 20:57:15 -04:00
|
|
|
compileOnly 'commons-logging:commons-logging:1.1.1'
|
2010-03-03 10:40:57 -05:00
|
|
|
|
2010-03-07 16:58:25 -05:00
|
|
|
compile ("org.springframework:spring-core:$springVersion") {
|
|
|
|
exclude(group: 'commons-logging', module: 'commons-logging')
|
|
|
|
}
|
|
|
|
|
2010-03-03 10:40:57 -05:00
|
|
|
testCompile 'junit:junit:4.7',
|
2010-08-17 21:32:43 -04:00
|
|
|
'org.mockito:mockito-core:1.8.5',
|
2010-03-03 10:40:57 -05:00
|
|
|
"org.springframework:spring-test:$springVersion"
|
2010-07-12 07:30:21 -04:00
|
|
|
|
|
|
|
// Use slf4j/logback for logging
|
2010-07-26 21:16:39 -04:00
|
|
|
testRuntime "org.slf4j:jcl-over-slf4j:$slf4jVersion",
|
2010-07-12 07:30:21 -04:00
|
|
|
"ch.qos.logback:logback-classic:$logbackVersion"
|
2010-03-03 10:40:57 -05:00
|
|
|
}
|
|
|
|
|
2010-07-12 07:30:21 -04:00
|
|
|
[configurations.runtime, configurations.default]*.exclude(module: 'commons-logging')
|
|
|
|
|
2010-07-22 20:57:15 -04:00
|
|
|
sourceSets.main.compileClasspath += configurations.compileOnly
|
2010-08-19 17:41:51 -04:00
|
|
|
sourceSets.main.compileClasspath += configurations.provided
|
2010-07-22 20:57:15 -04:00
|
|
|
|
2010-08-16 21:16:12 -04:00
|
|
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
|
|
|
|
2010-08-04 21:11:00 -04:00
|
|
|
System.setProperty('apacheDSWorkDir', "${buildDir}/apacheDSWork")
|
|
|
|
|
2010-03-03 10:40:57 -05:00
|
|
|
test {
|
2010-08-04 21:11:00 -04:00
|
|
|
jvmArgs = ['-ea', '-Xmx500m']
|
|
|
|
maxParallelForks = guessMaxForks()
|
|
|
|
testReport = false
|
|
|
|
}
|
|
|
|
|
|
|
|
def guessMaxForks() {
|
|
|
|
int processors = Runtime.runtime.availableProcessors()
|
|
|
|
return Math.max(2, (int) (processors / 2))
|
2010-03-03 10:40:57 -05:00
|
|
|
}
|
|
|
|
|