2010-03-28 18:54:41 -04:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'eclipse'
|
2010-03-03 10:40:57 -05:00
|
|
|
|
2012-07-08 16:55:21 -04:00
|
|
|
sourceCompatibility = 1.5
|
|
|
|
targetCompatibility = 1.5
|
|
|
|
|
2013-06-30 18:26:57 -04:00
|
|
|
ext.springVersion = '3.2.3.RELEASE'
|
2012-06-29 13:59:22 -04:00
|
|
|
ext.springLdapVersion = '1.3.1.RELEASE'
|
|
|
|
ext.ehcacheVersion = '1.6.2'
|
|
|
|
ext.aspectjVersion = '1.6.10'
|
|
|
|
ext.apacheDsVersion = '1.5.5'
|
|
|
|
ext.jstlVersion = '1.2'
|
|
|
|
ext.jettyVersion = '6.1.26'
|
|
|
|
ext.hsqlVersion = '1.8.0.10'
|
|
|
|
ext.slf4jVersion = '1.6.1'
|
|
|
|
ext.logbackVersion = '0.9.29'
|
|
|
|
ext.cglibVersion = '2.2'
|
|
|
|
ext.powerMockVersion = '1.4.12'
|
2012-11-28 18:56:03 -05:00
|
|
|
ext.servletApiVersion = '7.0.33'
|
2010-03-03 10:40:57 -05:00
|
|
|
|
2012-11-08 23:25:18 -05:00
|
|
|
ext.powerMockDependencies = [
|
|
|
|
"org.powermock:powermock-core:$powerMockVersion",
|
|
|
|
"org.powermock:powermock-api-support:$powerMockVersion",
|
|
|
|
"org.powermock:powermock-module-junit4-common:$powerMockVersion",
|
|
|
|
"org.powermock:powermock-module-junit4:$powerMockVersion",
|
|
|
|
"org.powermock:powermock-api-mockito:$powerMockVersion",
|
|
|
|
"org.powermock:powermock-reflect:$powerMockVersion"
|
|
|
|
]
|
|
|
|
|
2013-06-30 18:26:57 -04:00
|
|
|
ext.apacheds_libs = [
|
|
|
|
"org.apache.directory.server:apacheds-core:$apacheDsVersion",
|
|
|
|
"org.apache.directory.server:apacheds-core-entry:$apacheDsVersion",
|
|
|
|
"org.apache.directory.server:apacheds-protocol-shared:$apacheDsVersion",
|
|
|
|
"org.apache.directory.server:apacheds-protocol-ldap:$apacheDsVersion",
|
|
|
|
"org.apache.directory.server:apacheds-server-jndi:$apacheDsVersion",
|
|
|
|
'org.apache.directory.shared:shared-ldap:0.9.15'
|
|
|
|
]
|
|
|
|
|
2012-06-29 13:59:22 -04:00
|
|
|
ext.bundlorProperties = [
|
2011-02-07 11:06:23 -05:00
|
|
|
version: version,
|
2013-02-14 10:29:35 -05:00
|
|
|
secRange: "[$version, 3.3.0)",
|
|
|
|
springRange: "[$springVersion, 3.3.0)",
|
|
|
|
aspectjRange: '[1.6.0, 1.8.0)',
|
2011-02-07 11:06:23 -05:00
|
|
|
casRange: '[3.1.1, 3.2.0)',
|
|
|
|
cloggingRange: '[1.0.4, 2.0.0)',
|
2011-03-10 14:38:04 -05:00
|
|
|
ehcacheRange: '[1.4.1, 2.5.0)',
|
2011-02-07 11:06:23 -05:00
|
|
|
openid4javaRange: '[0.9.5, 1.0.0)',
|
|
|
|
springLdapRange: '[1.3.0,1.4.0)',
|
|
|
|
apacheDSRange: '[1.5.5, 1.6)',
|
|
|
|
apacheDSSharedRange: '[0.9.15, 1.0)',
|
|
|
|
ldapSdkRange: '[4.1, 5.0)',
|
2011-08-11 19:22:42 -04:00
|
|
|
aopAllianceRange: '[1.0.0, 2.0.0)'
|
2011-02-07 11:06:23 -05:00
|
|
|
]
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2011-02-14 09:57:30 -05:00
|
|
|
// Integration test setup
|
|
|
|
configurations {
|
|
|
|
integrationTestCompile {
|
|
|
|
extendsFrom testCompile
|
|
|
|
}
|
|
|
|
integrationTestRuntime {
|
|
|
|
extendsFrom integrationTestCompile, testRuntime
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
integrationTest {
|
|
|
|
java.srcDir file('src/integration-test/java')
|
|
|
|
resources.srcDir file('src/integration-test/resources')
|
2012-06-29 13:59:22 -04:00
|
|
|
compileClasspath = sourceSets.main.output + sourceSets.test.output + configurations.integrationTestCompile
|
|
|
|
runtimeClasspath = output + compileClasspath + configurations.integrationTestRuntime
|
2011-02-14 09:57:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task integrationTest(type: Test, dependsOn: jar) {
|
2012-06-29 13:59:22 -04:00
|
|
|
testClassesDir = sourceSets.integrationTest.output.classesDir
|
2011-02-14 09:57:30 -05:00
|
|
|
logging.captureStandardOutput(LogLevel.INFO)
|
|
|
|
classpath = sourceSets.integrationTest.runtimeClasspath
|
2011-02-14 14:01:27 -05:00
|
|
|
maxParallelForks = 1
|
2011-02-14 09:57:30 -05:00
|
|
|
}
|
|
|
|
|
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',
|
2012-11-07 12:21:05 -05:00
|
|
|
"org.springframework:spring-test:$springVersion",
|
|
|
|
'org.easytesting:fest-assert:1.4'
|
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-03-03 10:40:57 -05:00
|
|
|
test {
|
2010-09-16 05:50:12 -04:00
|
|
|
jvmArgs = ['-ea', '-Xmx500m']
|
2010-08-04 21:11:00 -04:00
|
|
|
maxParallelForks = guessMaxForks()
|
2011-02-16 10:57:22 -05:00
|
|
|
logging.captureStandardOutput(LogLevel.INFO)
|
2010-08-04 21:11:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
def guessMaxForks() {
|
|
|
|
int processors = Runtime.runtime.availableProcessors()
|
|
|
|
return Math.max(2, (int) (processors / 2))
|
2010-03-03 10:40:57 -05:00
|
|
|
}
|
|
|
|
|
2012-08-09 23:44:01 -04:00
|
|
|
javadoc {
|
|
|
|
title = "Spring Security $version API"
|
|
|
|
source = sourceSets.main.allJava
|
|
|
|
classpath += configurations.compileOnly + configurations.provided
|
|
|
|
options {
|
|
|
|
memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
|
|
|
|
author = true
|
|
|
|
header = project.name
|
|
|
|
outputLevel = org.gradle.external.javadoc.JavadocOutputLevel.QUIET
|
|
|
|
links = [
|
2012-12-13 11:04:01 -05:00
|
|
|
"http://static.springsource.org/spring/docs/3.2.x/javadoc-api/",
|
2012-08-09 23:44:01 -04:00
|
|
|
"http://static.springsource.org/spring-ldap/docs/1.3.x/apidocs/",
|
|
|
|
"http://download.oracle.com/javase/6/docs/api/"
|
|
|
|
]
|
|
|
|
groups = [
|
|
|
|
'Spring Security Core':[
|
|
|
|
'org.springframework.security.core*',
|
|
|
|
'org.springframework.security.authentication*',
|
|
|
|
'org.springframework.security.access*',
|
|
|
|
'org.springframework.security.remoting*',
|
|
|
|
'org.springframework.security.provisioning*',
|
|
|
|
'org.springframework.security.util*'],
|
|
|
|
'Spring Security Web':['org.springframework.security.web*'],
|
|
|
|
'Spring Security LDAP':['org.springframework.security.ldap*'],
|
|
|
|
'Spring Security Crypto':['org.springframework.security.crypto*'],
|
|
|
|
'Spring Security OpenID':['org.springframework.security.openid*'],
|
|
|
|
'Spring Security CAS':['org.springframework.security.cas*'],
|
|
|
|
'Spring Security ACL':['org.springframework.security.acls*'],
|
|
|
|
'Spring Security Config':['org.springframework.security.config*'],
|
|
|
|
'Spring Security Taglibs':['org.springframework.security.taglibs*'],
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task javadocJar(type: Jar) {
|
|
|
|
classifier = 'javadoc'
|
|
|
|
from javadoc
|
|
|
|
}
|