You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by vm...@apache.org on 2003/06/04 15:51:26 UTC

cvs commit: maven/src/plugins-build/clover/xdocs changes.xml

vmassol     2003/06/04 06:51:26

  Modified:    src/plugins-build/clover plugin.jelly project.xml
               src/plugins-build/clover/xdocs changes.xml
  Log:
  Make sure that test failures or errors do not stop the generation of the Clover reports.
  
  Revision  Changes    Path
  1.6       +9 -1      maven/src/plugins-build/clover/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/clover/plugin.jelly,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- plugin.jelly	30 Mar 2003 16:17:20 -0000	1.5
  +++ plugin.jelly	4 Jun 2003 13:51:26 -0000	1.6
  @@ -100,8 +100,16 @@
   
     <goal
       name="clover:html-report"
  -    prereqs="clover:on,test:test"
       description="Generate HTML test coverage reports with Clover">
  +
  +    <!-- Make sure that the report is generated whether the tests pass or
  +         not -->
  +    <j:set var="ignoreTestFailureOld" value="${maven.test.failure.ignore}"/>
  +    <j:set var="maven.test.failure.ignore" scope="parent" value="true"/>
  +    <attainGoal name="clover:on"/>
  +    <attainGoal name="test:test"/>
  +    <j:set var="maven.test.failure.ignore" scope="parent" 
  +      value="${ignoreTestFailureOld}"/>
     
       <!--
        |
  
  
  
  1.10      +11 -4     maven/src/plugins-build/clover/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/clover/project.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- project.xml	9 Apr 2003 01:06:44 -0000	1.9
  +++ project.xml	4 Jun 2003 13:51:26 -0000	1.10
  @@ -1,11 +1,11 @@
  -<?xml version="1.0" encoding="UTF-8"?>
  +<?xml version="1.0" encoding="UTF-8"?>
   
   <project>
     <extend>${basedir}/../project.xml</extend>
     <pomVersion>3</pomVersion>
     <id>maven-clover-plugin</id>
     <name>Maven Clover Plug-in</name>
  -  <currentVersion>1.2</currentVersion>
  +  <currentVersion>1.2-SNAPSHOT</currentVersion>
     <description/>
     <shortDescription>Java Project Management Tools</shortDescription>
     <url>http://maven.apache.org/reference/plugins/clover/</url>
  @@ -14,6 +14,13 @@
       <connection>scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:maven/src/plugins-build/clover/</connection>
       <url>http://cvs.apache.org/viewcvs/maven/src/plugins-build/clover/</url>
     </repository>
  +  <versions>
  +    <version>
  +      <id>1.2</id>
  +      <name>1.2</name>
  +      <tag>HEAD</tag>
  +    </version>
  +  </versions>
     <developers>
       <developer>
         <name>dIon Gillard</name>
  @@ -36,8 +43,8 @@
       <developer>
         <name>Vincent Massol</name>
         <id>vmassol</id>
  -      <email>vmassol@octo.com</email>
  -      <organization>Octo Technology</organization>
  +      <email>vmassol@pivolis.com</email>
  +      <organization>Pivolis</organization>
         <roles>
           <role>Java Developer</role>
         </roles>
  
  
  
  1.2       +9 -2      maven/src/plugins-build/clover/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/clover/xdocs/changes.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- changes.xml	24 Jan 2003 03:45:04 -0000	1.1
  +++ changes.xml	4 Jun 2003 13:51:26 -0000	1.2
  @@ -2,11 +2,18 @@
   <document>
     <properties>
       <title>Changes</title>
  -    <author email="vmassol@octo.com">Vincent Massol</author>
  +    <author email="vmassol@pivolis.com">Vincent Massol</author>
     </properties>
   
     <body>
  -    <release version="1.1" date="in CVS">
  +    <release version="1.2" date="in CVS">
  +      <action dev="vmassol" type="update">
  +        Make sure that test failures or errors do not stop the generation
  +        of the Clover reports.
  +      </action>
  +    </release>
  +    
  +    <release version="1.1" date="?">
         <action dev="vmassol" type="update">
           The Clover plugin now depends on version 1.0 of the Clover jar.
         </action>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org