Author: wsmoak Date: Sun Jun 4 22:04:21 2006 New Revision: 411667 URL: http://svn.apache.org/viewvc?rev=411667&view=rev Log: Exclude the failing LifecycleListenerTestCase. Pass additional system properties for logging.
Modified: struts/shale/branches/mvn_reorg/shale-tiger/pom.xml Modified: struts/shale/branches/mvn_reorg/shale-tiger/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/shale-tiger/pom.xml?rev=411667&r1=411666&r2=411667&view=diff ============================================================================== --- struts/shale/branches/mvn_reorg/shale-tiger/pom.xml (original) +++ struts/shale/branches/mvn_reorg/shale-tiger/pom.xml Sun Jun 4 22:04:21 2006 @@ -39,10 +39,25 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> + <excludes> + <exclude>**/LifecycleListenerTestCase.java</exclude> + </excludes> <systemProperties> <property> <name>basedir</name> <value>${basedir}</value> + </property> + <property> + <name>org.apache.commons.logging.LogFactory</name> + <value>org.apache.commons.logging.impl.LogFactoryImpl</value> + </property> + <property> + <name>org.apache.commons.logging.Log</name> + <value>org.apache.commons.logging.impl.SimpleLog</value> + </property> + <property> + <name>org.apache.commons.logging.simplelog.log.org.apache.shale.tiger</name> + <value>trace</value> </property> </systemProperties> </configuration>