Author: sebb Date: Wed Sep 1 13:25:58 2010 New Revision: 991530 URL: http://svn.apache.org/viewvc?rev=991530&view=rev Log: Replace deprecated systemProperties with systemPropertyVariables
Modified: commons/proper/digester/trunk/pom.xml Modified: commons/proper/digester/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/digester/trunk/pom.xml?rev=991530&r1=991529&r2=991530&view=diff ============================================================================== --- commons/proper/digester/trunk/pom.xml (original) +++ commons/proper/digester/trunk/pom.xml Wed Sep 1 13:25:58 2010 @@ -222,17 +222,11 @@ <exclude>**/TestRuleSet.java</exclude> <exclude>**/Test*$*.java</exclude> </excludes> - <systemProperties> + <systemPropertyVariables> <!-- Suppress most logging output --> - <property> - <name>org.apache.commons.logging.Log</name> - <value>org.apache.commons.logging.impl.SimpleLog</value> - </property> - <property> - <name>org.apache.commons.logging.simplelog.defaultlog</name> - <value>fatal</value> - </property> - </systemProperties> + <org.apache.commons.logging.Log>org.apache.commons.logging.impl.SimpleLog</org.apache.commons.logging.Log> + <org.apache.commons.logging.simplelog.defaultlog>fatal</org.apache.commons.logging.simplelog.defaultlog> + </systemPropertyVariables> </configuration> </plugin>