Author: craigmcc Date: Mon Jun 5 17:12:33 2006 New Revision: 411959 URL: http://svn.apache.org/viewvc?rev=411959&view=rev Log: Un-exclude the LifecycleListenerTestCase tests, after restoring a little bit more of the snarky file copying needed to set up the test webapp. This was in the "test:compile" target of the old build.xml, not in "test:webapp" with all the rest (sorry for the bum steer Wendy!)
Note that this file, like a bunch of others, currently has line ending issues. I'll fix that in a separate commit -- wanted to make clear what this particular change was first. 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=411959&r1=411958&r2=411959&view=diff ============================================================================== --- struts/shale/branches/mvn_reorg/shale-tiger/pom.xml (original) +++ struts/shale/branches/mvn_reorg/shale-tiger/pom.xml Mon Jun 5 17:12:33 2006 @@ -39,9 +39,6 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> - <excludes> - <exclude>**/LifecycleListenerTestCase.java</exclude> - </excludes> <systemProperties> <property> <name>basedir</name> @@ -89,6 +86,11 @@ <mkdir dir="${basedir}/target/test-webapp/WEB-INF/classes/org/apache/shale/tiger/config"/> <copy todir="${basedir}/target/test-webapp/WEB-INF/classes/org/apache/shale/tiger/config" file="${basedir}/target/test-classes/org/apache/shale/tiger/config/TestBean.class"/> + <mkdir dir="${basedir}/target/test-webapp/WEB-INF/classes/org/apache/shale/tiger/faces"/> + <copy todir="${basedir}/target/test-webapp/WEB-INF/classes/org/apache/shale/tiger/faces"> + <fileset dir="${basedir}/target/test-classes/org/apache/shale/tiger/faces" + includes="My*.class"/> + </copy> <mkdir dir="${basedir}/target/test-webapp/WEB-INF/lib"/> <jar destfile="${basedir}/target/test-webapp/WEB-INF/lib/test.jar" basedir="${basedir}/target/test-classes"