Author: rahul Date: Mon Aug 23 01:25:46 2010 New Revision: 987971 URL: http://svn.apache.org/viewvc?rev=987971&view=rev Log: Suppress most logging output during build.
Modified: commons/proper/digester/branches/1_X_LINE/pom.xml Modified: commons/proper/digester/branches/1_X_LINE/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/digester/branches/1_X_LINE/pom.xml?rev=987971&r1=987970&r2=987971&view=diff ============================================================================== --- commons/proper/digester/branches/1_X_LINE/pom.xml (original) +++ commons/proper/digester/branches/1_X_LINE/pom.xml Mon Aug 23 01:25:46 2010 @@ -213,6 +213,17 @@ <exclude>**/TestRuleSet.java</exclude> <exclude>**/Test*$*.java</exclude> </excludes> + <systemProperties> + <!-- 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> </configuration> </plugin>