Author: sebb
Date: Fri Sep  2 02:05:57 2011
New Revision: 1164328

URL: http://svn.apache.org/viewvc?rev=1164328&view=rev
Log:
Replace deprecated systemProperties with systemPropertyVariables

Modified:
    commons/proper/configuration/trunk/pom.xml

Modified: commons/proper/configuration/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/pom.xml?rev=1164328&r1=1164327&r2=1164328&view=diff
==============================================================================
--- commons/proper/configuration/trunk/pom.xml (original)
+++ commons/proper/configuration/trunk/pom.xml Fri Sep  2 02:05:57 2011
@@ -597,16 +597,10 @@
             <artifactId>maven-surefire-plugin</artifactId>
             <configuration>
               <forkMode>once</forkMode>
-              <systemProperties>
-                <property>
-                  <name>java.awt.headless</name>
-                  <value>true</value>
-                </property>
-                <property>
-                  <name>test.webdav.base</name>
-                  <value>${test.webdav.base}</value>
-                </property>
-              </systemProperties>
+              <systemPropertyVariables>
+                  <java.awt.headless>true</java.awt.headless>
+                  <test.webdav.base>${test.webdav.base}</test.webdav.base>
+              </systemPropertyVariables>
               <includes>
                 <include>**/TestWebdavConfigurationBuilder.java</include>
               </includes>


Reply via email to