diff --git a/config/config.gradle b/config/config.gradle index ada3e7effb..b7291ecfc6 100644 --- a/config/config.gradle +++ b/config/config.gradle @@ -60,10 +60,6 @@ test { inputs.file file("$rootDir/docs/manual/src/docbook/appendix-namespace.xml") } -integrationTest { - systemProperties['apacheDSWorkDir'] = "${buildDir}/apacheDSWork" -} - rncToXsd { rncDir = file('src/main/resources/org/springframework/security/config/') xsdDir = rncDir diff --git a/ldap/ldap.gradle b/ldap/ldap.gradle index cd853174d2..bb159e73ac 100644 --- a/ldap/ldap.gradle +++ b/ldap/ldap.gradle @@ -29,13 +29,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" }