From 055eb72d600ca91dac4ec0a1b6e56112f7c123be Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Wed, 18 Jun 2014 09:50:17 -0500 Subject: [PATCH] Remove explict LDAP dir for integration tests --- config/config.gradle | 6 +----- ldap/ldap.gradle | 2 -- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/config/config.gradle b/config/config.gradle index 52c0535e55..acaa450f05 100644 --- a/config/config.gradle +++ b/config/config.gradle @@ -52,8 +52,4 @@ dependencies { test { inputs.file file("$rootDir/docs/manual/src/docbook/appendix-namespace.xml") -} - -integrationTest { - systemProperties['apacheDSWorkDir'] = "${buildDir}/apacheDSWork" -} +} \ No newline at end of file diff --git a/ldap/ldap.gradle b/ldap/ldap.gradle index 8594baa37b..d10ff4e041 100644 --- a/ldap/ldap.gradle +++ b/ldap/ldap.gradle @@ -33,13 +33,11 @@ integrationTest { include('**/ApacheDSServerIntegrationTests.class') // exclude('**/OpenLDAPIntegrationTestSuite.class') maxParallelForks = 1 - systemProperties['apacheDSWorkDir'] = "${buildDir}/apacheDSWork" } // Runs a server for running the integration tests against (from an IDE, for example) task(ldapServer, dependsOn: 'integrationTestClasses', type: JavaExec) { classpath = sourceSets.integrationTest.runtimeClasspath main = 'org.springframework.security.ldap.ApacheDSServerIntegrationTests' - systemProperties['apacheDSWorkDir'] = "${buildDir}/apacheDSWork" }