Author: sebb Date: Wed Sep 1 13:16:16 2010 New Revision: 991524 URL: http://svn.apache.org/viewvc?rev=991524&view=rev Log: Quieten test logging; replace deprecated systemProperties with systemPropertyVariables
Modified: commons/proper/jci/trunk/pom.xml Modified: commons/proper/jci/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/jci/trunk/pom.xml?rev=991524&r1=991523&r2=991524&view=diff ============================================================================== --- commons/proper/jci/trunk/pom.xml (original) +++ commons/proper/jci/trunk/pom.xml Wed Sep 1 13:16:16 2010 @@ -91,12 +91,11 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> - <systemProperties> - <property> - <name>org.apache.commons.logging.Log</name> - <value>org.apache.commons.logging.impl.SimpleLog</value> - </property> - </systemProperties> + <systemPropertyVariables> + <org.apache.commons.logging.Log>org.apache.commons.logging.impl.SimpleLog</org.apache.commons.logging.Log> + <!-- Quieten the test output --> + <org.apache.commons.logging.simplelog.defaultlog>error</org.apache.commons.logging.simplelog.defaultlog> + </systemPropertyVariables> </configuration> </plugin> <plugin>