Author: sebb
Date: Fri Sep 2 01:42:38 2011
New Revision: 1164325
URL: http://svn.apache.org/viewvc?rev=1164325&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=1164325&r1=1164324&r2=1164325&view=diff
==============================================================================
--- commons/proper/configuration/trunk/pom.xml (original)
+++ commons/proper/configuration/trunk/pom.xml Fri Sep 2 01:42:38 2011
@@ -487,16 +487,10 @@
<excludes>
<exclude>**/TestWebdavConfigurationBuilder.java</exclude>
</excludes>
- <systemProperties>
- <property>
- <name>java.awt.headless</name>
- <value>true</value>
- </property>
- <property>
- <name>org.apache.commons.logging.Log</name>
- <value>org.apache.commons.configuration.Logging</value>
- </property>
- </systemProperties>
+ <systemPropertyVariables>
+ <java.awt.headless>true</java.awt.headless>
+
<org.apache.commons.logging.Log>org.apache.commons.configuration.Logging</org.apache.commons.logging.Log>
+ </systemPropertyVariables>
</configuration>
</plugin>
<plugin>