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" }