mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-07-09 11:53:30 +00:00
ApacheDS workDir property should be passed to the test process, not set as a system property in the main build process.
This commit is contained in:
parent
a128e3b4fe
commit
551166a577
@ -46,10 +46,8 @@ sourceSets.main.compileClasspath += configurations.provided
|
|||||||
|
|
||||||
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
||||||
|
|
||||||
System.setProperty('apacheDSWorkDir', "${buildDir}/apacheDSWork")
|
|
||||||
|
|
||||||
test {
|
test {
|
||||||
jvmArgs = ['-ea', '-Xmx500m']
|
jvmArgs = ['-ea', '-Xmx500m', "-DapacheDSWorkDir=${buildDir}/apacheDSWork"]
|
||||||
maxParallelForks = guessMaxForks()
|
maxParallelForks = guessMaxForks()
|
||||||
testReport = false
|
testReport = false
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
package org.springframework.security.web.authentication.logout;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Luke Taylor
|
||||||
|
*/
|
||||||
|
public class CookieClearingLogoutHandler {
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package org.springframework.security.web.authentication.logout;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Luke Taylor
|
||||||
|
*/
|
||||||
|
public class CookieClearingLogoutHandlerTests {
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user