You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2010/09/01 15:16:16 UTC

svn commit: r991524 - /commons/proper/jci/trunk/pom.xml

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>