You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by ev...@apache.org on 2004/08/17 16:00:48 UTC

cvs commit: maven-plugins/jcoverage/xdocs changes.xml properties.xml

evenisse    2004/08/17 07:00:48

  Modified:    jcoverage plugin.jelly plugin.properties project.xml
               jcoverage/xdocs changes.xml properties.xml
  Log:
  Add the possibility to set multiple includes and excludes files for instrumentation.
  
  Revision  Changes    Path
  1.16      +3 -4      maven-plugins/jcoverage/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/jcoverage/plugin.jelly,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- plugin.jelly	11 Jul 2004 15:19:32 -0000	1.15
  +++ plugin.jelly	17 Aug 2004 14:00:48 -0000	1.16
  @@ -122,10 +122,9 @@
         <maven:addPath id="maven.dependency.classpath" refid="${pom.getDependencyClasspath()}"/>
   
         <instrument todir="${maven.jcoverage.instrumentation}">
  -        <ant:fileset dir="${maven.build.dest}">
  -          <ant:include name="**/*.class" />
  -          <ant:exclude name="${maven.jcoverage.instrumentation.excludes}" />
  -        </ant:fileset>
  +        <ant:fileset dir="${maven.build.dest}"
  +            includes="${maven.jcoverage.instrumentation.includes}"
  +            excludes="${maven.jcoverage.instrumentation.excludes}"/>
           <ant:classpath>
             <ant:path refid="jcoverage.classpath"/>
           </ant:classpath>
  
  
  
  1.5       +2 -1      maven-plugins/jcoverage/plugin.properties
  
  Index: plugin.properties
  ===================================================================
  RCS file: /home/cvs/maven-plugins/jcoverage/plugin.properties,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- plugin.properties	26 Apr 2004 12:12:14 -0000	1.4
  +++ plugin.properties	17 Aug 2004 14:00:48 -0000	1.5
  @@ -20,4 +20,5 @@
   maven.jcoverage.junit.fork=yes
   maven.jcoverage.report.template=maven
   maven.jcoverage.report.stylesheet=${plugin.resources}/style.css
  -maven.jcoverage.instrumentation.excludes=NOT_DEFINED
  \ No newline at end of file
  +maven.jcoverage.instrumentation.includes=**/*.class
  +maven.jcoverage.instrumentation.excludes=NOT_DEFINED
  
  
  
  1.30      +1 -1      maven-plugins/jcoverage/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/jcoverage/project.xml,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- project.xml	11 Jul 2004 15:27:48 -0000	1.29
  +++ project.xml	17 Aug 2004 14:00:48 -0000	1.30
  @@ -23,7 +23,7 @@
     <pomVersion>3</pomVersion>
     <id>maven-jcoverage-plugin</id>
     <name>Maven JCoverage plugin</name>
  -  <currentVersion>1.0.7</currentVersion>
  +  <currentVersion>1.0.8-SNAPSHOT</currentVersion>
     <package>org.apache.maven.jcoveragereport</package>
     <description>This plugin provides coverage analysis of your source-code based on the open-source jcoverage tool.</description>
     <shortDescription>This plugin provides coverage analysis of your source-code based on the open-source jcoverage tool.</shortDescription>
  
  
  
  1.23      +3 -0      maven-plugins/jcoverage/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/jcoverage/xdocs/changes.xml,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- changes.xml	11 Jul 2004 15:27:48 -0000	1.22
  +++ changes.xml	17 Aug 2004 14:00:48 -0000	1.23
  @@ -24,6 +24,9 @@
       <author email="evenisse@ifrance.com">Emmanuel Venisse</author>
     </properties>
     <body>
  +    <release version="1.0.8" date="In CVS">
  +      <action dev="evenisse" type="add">Add the possibility to set multiple includes and excludes files for instrumentation.</action>
  +    </release>
       <release version="1.0.7" date="2004-07-11">
         <action dev="evenisse" type="fix">Fixed tests execution when artifact contains properties.</action>
         <action dev="evenisse" type="fix">Remove deprecated APIs.</action>
  
  
  
  1.6       +8 -0      maven-plugins/jcoverage/xdocs/properties.xml
  
  Index: properties.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/jcoverage/xdocs/properties.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- properties.xml	26 Apr 2004 12:12:14 -0000	1.5
  +++ properties.xml	17 Aug 2004 14:00:48 -0000	1.6
  @@ -57,6 +57,14 @@
             </td>
           </tr>
           <tr>
  +          <td>maven.jcoverage.instrumentation.includes</td>
  +          <td>**/*.class</td>
  +          <td>Yes</td>
  +          <td>
  +            Specifies the pattern for the included classes of instrumentation.
  +          </td>
  +        </tr>
  +        <tr>
             <td>maven.jcoverage.instrumentation.excludes</td>
             <td>Not defined</td>
             <td>Yes</td>
  
  
  

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