You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2012/05/01 23:14:52 UTC

svn commit: r1332832 - in /cxf/trunk: parent/pom.xml services/sts/systests/advanced/pom.xml services/sts/systests/basic/pom.xml

Author: dkulp
Date: Tue May  1 21:14:52 2012
New Revision: 1332832

URL: http://svn.apache.org/viewvc?rev=1332832&view=rev
Log:
Use target dir for the tmp dir as the various WS-Security things end up
using a shared cache for the tokens/replays and deleting them untimely
when running in parallel.

Modified:
    cxf/trunk/parent/pom.xml
    cxf/trunk/services/sts/systests/advanced/pom.xml
    cxf/trunk/services/sts/systests/basic/pom.xml

Modified: cxf/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/parent/pom.xml?rev=1332832&r1=1332831&r2=1332832&view=diff
==============================================================================
--- cxf/trunk/parent/pom.xml (original)
+++ cxf/trunk/parent/pom.xml Tue May  1 21:14:52 2012
@@ -382,6 +382,7 @@
                         <enableAssertions>${cxf.surefire.enable.assertions}</enableAssertions>
                         <parallel>${cxf.surefire.parallel.mode}</parallel>
                         <systemPropertyVariables>
+                            <java.io.tmpdir>${basedir}/target</java.io.tmpdir>
                             <cxf.useRandomFirstPort>true</cxf.useRandomFirstPort>
                             <org.apache.ws.commons.schema.protectReadOnlyCollections>${cxf.protect-xmlschema-collections}</org.apache.ws.commons.schema.protectReadOnlyCollections>
                             <cxf.validateServiceSchemas>${cxf.validateServices}</cxf.validateServiceSchemas>

Modified: cxf/trunk/services/sts/systests/advanced/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/services/sts/systests/advanced/pom.xml?rev=1332832&r1=1332831&r2=1332832&view=diff
==============================================================================
--- cxf/trunk/services/sts/systests/advanced/pom.xml (original)
+++ cxf/trunk/services/sts/systests/advanced/pom.xml Tue May  1 21:14:52 2012
@@ -171,6 +171,7 @@
                             <systemPropertyVariables>
                                 <sts.deployment>standalone</sts.deployment>
                                 <java.security.auth.login.config>src/test/resources/kerberos.jaas</java.security.auth.login.config>
+                                <java.io.tmpdir>${basedir}/target/tmp</java.io.tmpdir>
                             </systemPropertyVariables>
                         </configuration>
                     </plugin>
@@ -188,6 +189,7 @@
                             <systemPropertyVariables>
                                 <sts.deployment>war</sts.deployment>
                                 <java.security.auth.login.config>src/test/resources/kerberos.jaas</java.security.auth.login.config>
+                                <java.io.tmpdir>${basedir}/target/tmp</java.io.tmpdir>
                             </systemPropertyVariables>
                         </configuration>
                     </plugin>
@@ -249,6 +251,7 @@
                              <systemPropertyVariables>
                                 <sts.deployment>standalone</sts.deployment>
                                 <java.security.auth.login.config>src/test/resources/kerberos.jaas</java.security.auth.login.config>
+                                <java.io.tmpdir>${basedir}/target/tmp</java.io.tmpdir>
                              </systemPropertyVariables>
                          </configuration>
                     </plugin>

Modified: cxf/trunk/services/sts/systests/basic/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/services/sts/systests/basic/pom.xml?rev=1332832&r1=1332831&r2=1332832&view=diff
==============================================================================
--- cxf/trunk/services/sts/systests/basic/pom.xml (original)
+++ cxf/trunk/services/sts/systests/basic/pom.xml Tue May  1 21:14:52 2012
@@ -164,6 +164,7 @@
                         <configuration>
                             <systemPropertyVariables>
                                 <sts.deployment>standalone</sts.deployment>
+                                <java.io.tmpdir>${basedir}/target/tmp</java.io.tmpdir>
                             </systemPropertyVariables>
                         </configuration>
                     </plugin>
@@ -180,6 +181,7 @@
                         <configuration>
                             <systemPropertyVariables>
                                 <sts.deployment>war</sts.deployment>
+                                <java.io.tmpdir>${basedir}/target/tmp</java.io.tmpdir>
                             </systemPropertyVariables>
                         </configuration>
                     </plugin>
@@ -240,6 +242,7 @@
                              <argLine>-Djava.endorsed.dirs=${basedir}/target/endorsed</argLine>
                              <systemPropertyVariables>
                                 <sts.deployment>standalone</sts.deployment>
+                                <java.io.tmpdir>${basedir}/target/tmp</java.io.tmpdir>
                              </systemPropertyVariables>
                          </configuration>
                     </plugin>