epugh 2004/07/08 06:08:38 Modified: cruisecontrol/xdocs changes.xml cruisecontrol/src/plugin-test/cvs-scm maven.xml cruisecontrol/src/plugin-resources cruisecontrol.jsl Log: Show unit tests results in results tab of cc Revision Changes Path 1.10 +1 -0 maven-plugins/cruisecontrol/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /home/cvs/maven-plugins/cruisecontrol/xdocs/changes.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- changes.xml 19 Jun 2004 03:31:25 -0000 1.9 +++ changes.xml 8 Jul 2004 13:08:38 -0000 1.10 @@ -25,6 +25,7 @@ </properties> <body> <release version="1.3" date="2004-06-18"> + <action dev="epugh" type="add" issue="MPCRUISECONTROL-6" due-to="Paul Spencer">Show unit test results in Test Results tab.</action> <action dev="brett" type="add" issue="MPCRUISECONTROL-3" due-to="Carsten Ziegeler">implementation of run goal</action> <action dev="epugh" type="add">Allow SVN repositories to by used by cruisecontrol.</action> <action dev="epugh" type="fix">allow the maven.cruisecontrol.home property to be overrided by other plugins via preGoal calls.</action> 1.2 +3 -0 maven-plugins/cruisecontrol/src/plugin-test/cvs-scm/maven.xml Index: maven.xml =================================================================== RCS file: /home/cvs/maven-plugins/cruisecontrol/src/plugin-test/cvs-scm/maven.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- maven.xml 8 Jul 2004 13:06:14 -0000 1.1 +++ maven.xml 8 Jul 2004 13:08:38 -0000 1.2 @@ -57,6 +57,9 @@ <x:set var="count" select="count($cruisecontrolDoc/cruisecontrol/project/modificationset/cvs)"/> <assert:assertEquals expected="1" value="${count.intValue().toString()}"/> + <x:set var="count" select="count($cruisecontrolDoc/cruisecontrol/project/log/merge)"/> + <assert:assertEquals expected="1" value="${count.intValue().toString()}"/> + </goal> 1.8 +3 -1 maven-plugins/cruisecontrol/src/plugin-resources/cruisecontrol.jsl Index: cruisecontrol.jsl =================================================================== RCS file: /home/cvs/maven-plugins/cruisecontrol/src/plugin-resources/cruisecontrol.jsl,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- cruisecontrol.jsl 4 Jun 2004 19:12:34 -0000 1.7 +++ cruisecontrol.jsl 8 Jul 2004 13:08:38 -0000 1.8 @@ -55,7 +55,9 @@ <schedule interval="${maven.cruisecontrol.schedule.interval}"> <maven mavenscript="${maven.home}/bin/maven" goal="${maven.cruisecontrol.goals}" projectfile="${maven.cruisecontrol.checkout.dir}/${module}/project.xml"/> </schedule> - <log dir="${maven.cruisecontrol.logs.dir}/${pom.artifactId}"/> + <log dir="${maven.cruisecontrol.logs.dir}/${pom.artifactId}"> + <merge dir="${maven.cruisecontrol.checkout.dir}/${module}/target/test-reports"/> + </log> <publishers> <currentbuildstatuspublisher file="${maven.cruisecontrol.logs.dir}/currentbuildstatus.txt"/> <htmlemail
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]