You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by di...@apache.org on 2003/11/20 16:35:16 UTC

cvs commit: maven-plugins/pmd plugin.jelly

dion        2003/11/20 07:35:16

  Modified:    pmd/xdocs changes.xml
               pmd      plugin.jelly
  Log:
  Fix for Maven-1044. Allow multiple includes/excludes
  
  Revision  Changes    Path
  1.15      +3 -0      maven-plugins/pmd/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/pmd/xdocs/changes.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- changes.xml	10 Nov 2003 14:16:40 -0000	1.14
  +++ changes.xml	20 Nov 2003 15:35:16 -0000	1.15
  @@ -9,6 +9,9 @@
     <body>
   
       <release version="1.3" date="in CVS">
  +      <action dev="dion" type="fix" issue="MAVEN-1044">
  +        Allow multiple includes/excludes.
  +      </action>
         <action dev="dion" type="update">
           Apply MAVEN-1008. Allow for custom rulesets in the classpath.
         </action>
  
  
  
  1.10      +3 -3      maven-plugins/pmd/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/pmd/plugin.jelly,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- plugin.jelly	10 Nov 2003 14:16:40 -0000	1.9
  +++ plugin.jelly	20 Nov 2003 15:35:16 -0000	1.10
  @@ -86,9 +86,9 @@
       
       <pmd rulesetfiles="${maven.pmd.rulesetfiles}">
         <formatter type="xml" toFile="${maven.build.dir}/pmd-raw-report.xml"/>
  -      <fileset dir="${pom.build.sourceDirectory}">
  -        <include name="${maven.pmd.includes}"/>
  -        <exclude name="${maven.pmd.excludes}"/>
  +      <fileset dir="${pom.build.sourceDirectory}" 
  +        includes="${maven.pmd.includes}"
  +        excludes="${maven.pmd.excludes}">
   
           <!-- FIXME: This is a bad cut and paste -->
           <!-- handle source modifications -->
  
  
  

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