vmassol 2003/06/04 22:38:00
Modified: src/plugins-build/checkstyle plugin.jelly
Log:
Correctly apply Thomas patch (Thanks to Florin): Fix fileset include/exclude so that
comma separated list are supported.
Revision Changes Path
1.8 +3 -4 maven/src/plugins-build/checkstyle/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/checkstyle/plugin.jelly,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- plugin.jelly 4 Jun 2003 19:23:03 -0000 1.7
+++ plugin.jelly 5 Jun 2003 05:38:00 -0000 1.8
@@ -128,10 +128,9 @@
<property key="checkstyle.cache.file"
file="${maven.checkstyle.cache.file}"/>
- <ant:fileset dir="${pom.build.sourceDirectory}">
- <ant:include name="${maven.checkstyle.includes}"/>
- <ant:exclude name="${maven.checkstyle.excludes}"/>
- </ant:fileset>
+ <ant:fileset dir="${pom.build.sourceDirectory}"
+ includes="${maven.checkstyle.includes}"
+ excludes="${maven.checkstyle.excludes}"/>
<ant:formatter type="xml"
toFile="${maven.build.dir}/checkstyle-raw-report.xml"/>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]