|
Unconfigured checkstyle plugin duplicates entries in aggregated report
---------------------------------------------------------------------- Key: MCHECKSTYLE-167 URL: https://jira.codehaus.org/browse/MCHECKSTYLE-167 Project: Maven 2.x Checkstyle Plugin Issue Type: Bug Affects Versions: 2.8 Environment: {{{ mvn --version Apache Maven 3.0.4 (r1206075; 2011-11-25 09:20:29+0100) Maven home: /usr/local/Cellar/maven/current/libexec Java version: 1.6.0_29, vendor: Apple Inc. Java home: /Library/Java/JavaVirtualMachines/1.6.0_29-b11-402.jdk/Contents/Home Default locale: de_DE, platform encoding: MacRoman OS name: "mac os x", version: "10.7.2", arch: "x86_64", family: "mac" }}} Reporter: Mirko Friedenhagen Attachments: checkstyle-report-duplicates-errors-in-aggregate.zip Using a very simple single module project, the aggregated report is created by default and reports an incorrect number of violations, it just doubles the numbers. I checked out http://svn.apache.org/repos/asf/maven/plugins/tags/maven-checkstyle-plugin-2.8 and modified the integration test project {{checkstyle-report}} a little bit: * I deleted the {{reportSets}} configuration from the {{pom.xml}}. * I modified {{src/main/java/org/MyClass.java}} to actually have errors. The build log looks like this: {code} [mirko@borg checkstyle-report]$ mvn clean site [INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building check-pass 1.0-SNAPSHOT [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ check-pass --- [INFO] Deleting /Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/target [INFO] [INFO] --- maven-site-plugin:3.0:site (default-site) @ check-pass --- [INFO] configuring report plugin org.apache.maven.plugins:maven-checkstyle-plugin:2.8 [INFO] Relativizing decoration links with respect to project URL: http://maven.apache.org/ [INFO] Rendering site with org.apache.maven.skins:maven-default-skin:jar:1.0 skin. [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 [INFO] [INFO] There are 2 checkstyle errors. [WARNING] Unable to locate Source XRef to link to - DISABLED [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 [INFO] [INFO] There are 4 checkstyle errors. [WARNING] Unable to locate Source XRef to link to - DISABLED [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 4.847s [INFO] Finished at: Tue Nov 29 21:13:40 CET 2011 [INFO] Final Memory: 12M/81M [INFO] ------------------------------------------------------------------------ {code} {{target/checkstyle-result.xml}} looks like this and reports the same errors twice: {code} <?xml version="1.0" encoding="UTF-8"?> <checkstyle version="5.4"> <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> </file> <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> </file> </checkstyle> {code} Both the {{checkstyle}} and {{checkstyle-aggregate}} report are generated and {{checkstyle-aggregate}} reports the same errors twice. I attach the patched project which includes a check in {{verify.groovy}} to assert that only one {{file}} entry is present in the created {{target/checkstyle-result.xml}}. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
[ https://jira.codehaus.org/browse/MCHECKSTYLE-167?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=284549#comment-284549 ] Mirko Friedenhagen commented on MCHECKSTYLE-167: ------------------------------------------------ As a workaround you may configure a {{reportSet}} section in your pom for projects having no modules: {code:xml} <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.8</version> <reportSets> <reportSet> <reports> <report>checkstyle</report> </reports> </reportSet> </reportSets> </plugin> {code} > Unconfigured checkstyle plugin duplicates entries in aggregated report > ---------------------------------------------------------------------- > > Key: MCHECKSTYLE-167 > URL: https://jira.codehaus.org/browse/MCHECKSTYLE-167 > Project: Maven 2.x Checkstyle Plugin > Issue Type: Bug > Affects Versions: 2.8 > Environment: {{{ > mvn --version > Apache Maven 3.0.4 (r1206075; 2011-11-25 09:20:29+0100) > Maven home: /usr/local/Cellar/maven/current/libexec > Java version: 1.6.0_29, vendor: Apple Inc. > Java home: /Library/Java/JavaVirtualMachines/1.6.0_29-b11-402.jdk/Contents/Home > Default locale: de_DE, platform encoding: MacRoman > OS name: "mac os x", version: "10.7.2", arch: "x86_64", family: "mac" > }}} > Reporter: Mirko Friedenhagen > Attachments: checkstyle-report-duplicates-errors-in-aggregate.zip > > > Using a very simple single module project, the aggregated report is created by default and reports an incorrect number of violations, it just doubles the numbers. I checked out http://svn.apache.org/repos/asf/maven/plugins/tags/maven-checkstyle-plugin-2.8 and modified the integration test project {{checkstyle-report}} a little bit: > * I deleted the {{reportSets}} configuration from the {{pom.xml}}. > * I modified {{src/main/java/org/MyClass.java}} to actually have errors. > The build log looks like this: > {code} > [mirko@borg checkstyle-report]$ mvn clean site > [INFO] Scanning for projects... > [INFO] > [INFO] ------------------------------------------------------------------------ > [INFO] Building check-pass 1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------------ > [INFO] > [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ check-pass --- > [INFO] Deleting /Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/target > [INFO] > [INFO] --- maven-site-plugin:3.0:site (default-site) @ check-pass --- > [INFO] configuring report plugin org.apache.maven.plugins:maven-checkstyle-plugin:2.8 > [INFO] Relativizing decoration links with respect to project URL: http://maven.apache.org/ > [INFO] Rendering site with org.apache.maven.skins:maven-default-skin:jar:1.0 skin. > [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 > [INFO] > [INFO] There are 2 checkstyle errors. > [WARNING] Unable to locate Source XRef to link to - DISABLED > [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 > [INFO] > [INFO] There are 4 checkstyle errors. > [WARNING] Unable to locate Source XRef to link to - DISABLED > [INFO] ------------------------------------------------------------------------ > [INFO] BUILD SUCCESS > [INFO] ------------------------------------------------------------------------ > [INFO] Total time: 4.847s > [INFO] Finished at: Tue Nov 29 21:13:40 CET 2011 > [INFO] Final Memory: 12M/81M > [INFO] ------------------------------------------------------------------------ > {code} > {{target/checkstyle-result.xml}} looks like this and reports the same errors twice: > {code} > <?xml version="1.0" encoding="UTF-8"?> > <checkstyle version="5.4"> > <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> > <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> > <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> > </file> > <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> > <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> > <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> > </file> > </checkstyle> > {code} > Both the {{checkstyle}} and {{checkstyle-aggregate}} report are generated and {{checkstyle-aggregate}} reports the same errors twice. I attach the patched project which includes a check in {{verify.groovy}} to assert that only one {{file}} entry is present in the created {{target/checkstyle-result.xml}}. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by JIRA jira@codehaus.org
[ https://jira.codehaus.org/browse/MCHECKSTYLE-167?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Olivier Lamy closed MCHECKSTYLE-167. ------------------------------------ Resolution: Fixed Fix Version/s: 2.9 Assignee: Olivier Lamy fixed with MCHECKSTYLE-168 > Unconfigured checkstyle plugin duplicates entries in aggregated report > ---------------------------------------------------------------------- > > Key: MCHECKSTYLE-167 > URL: https://jira.codehaus.org/browse/MCHECKSTYLE-167 > Project: Maven 2.x Checkstyle Plugin > Issue Type: Bug > Affects Versions: 2.8 > Environment: {{{ > mvn --version > Apache Maven 3.0.4 (r1206075; 2011-11-25 09:20:29+0100) > Maven home: /usr/local/Cellar/maven/current/libexec > Java version: 1.6.0_29, vendor: Apple Inc. > Java home: /Library/Java/JavaVirtualMachines/1.6.0_29-b11-402.jdk/Contents/Home > Default locale: de_DE, platform encoding: MacRoman > OS name: "mac os x", version: "10.7.2", arch: "x86_64", family: "mac" > }}} > Reporter: Mirko Friedenhagen > Assignee: Olivier Lamy > Fix For: 2.9 > > Attachments: checkstyle-report-duplicates-errors-in-aggregate.zip > > > Using a very simple single module project, the aggregated report is created by default and reports an incorrect number of violations, it just doubles the numbers. I checked out http://svn.apache.org/repos/asf/maven/plugins/tags/maven-checkstyle-plugin-2.8 and modified the integration test project {{checkstyle-report}} a little bit: > * I deleted the {{reportSets}} configuration from the {{pom.xml}}. > * I modified {{src/main/java/org/MyClass.java}} to actually have errors. > The build log looks like this: > {code} > [mirko@borg checkstyle-report]$ mvn clean site > [INFO] Scanning for projects... > [INFO] > [INFO] ------------------------------------------------------------------------ > [INFO] Building check-pass 1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------------ > [INFO] > [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ check-pass --- > [INFO] Deleting /Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/target > [INFO] > [INFO] --- maven-site-plugin:3.0:site (default-site) @ check-pass --- > [INFO] configuring report plugin org.apache.maven.plugins:maven-checkstyle-plugin:2.8 > [INFO] Relativizing decoration links with respect to project URL: http://maven.apache.org/ > [INFO] Rendering site with org.apache.maven.skins:maven-default-skin:jar:1.0 skin. > [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 > [INFO] > [INFO] There are 2 checkstyle errors. > [WARNING] Unable to locate Source XRef to link to - DISABLED > [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 > [INFO] > [INFO] There are 4 checkstyle errors. > [WARNING] Unable to locate Source XRef to link to - DISABLED > [INFO] ------------------------------------------------------------------------ > [INFO] BUILD SUCCESS > [INFO] ------------------------------------------------------------------------ > [INFO] Total time: 4.847s > [INFO] Finished at: Tue Nov 29 21:13:40 CET 2011 > [INFO] Final Memory: 12M/81M > [INFO] ------------------------------------------------------------------------ > {code} > {{target/checkstyle-result.xml}} looks like this and reports the same errors twice: > {code} > <?xml version="1.0" encoding="UTF-8"?> > <checkstyle version="5.4"> > <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> > <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> > <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> > </file> > <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> > <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> > <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> > </file> > </checkstyle> > {code} > Both the {{checkstyle}} and {{checkstyle-aggregate}} report are generated and {{checkstyle-aggregate}} reports the same errors twice. I attach the patched project which includes a check in {{verify.groovy}} to assert that only one {{file}} entry is present in the created {{target/checkstyle-result.xml}}. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by JIRA jira@codehaus.org
[ https://jira.codehaus.org/browse/MCHECKSTYLE-167?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eddy Pelaic updated MCHECKSTYLE-167: ------------------------------------ Attachment: checkstyle.zip > Unconfigured checkstyle plugin duplicates entries in aggregated report > ---------------------------------------------------------------------- > > Key: MCHECKSTYLE-167 > URL: https://jira.codehaus.org/browse/MCHECKSTYLE-167 > Project: Maven 2.x Checkstyle Plugin > Issue Type: Bug > Affects Versions: 2.8 > Environment: {{{ > mvn --version > Apache Maven 3.0.4 (r1206075; 2011-11-25 09:20:29+0100) > Maven home: /usr/local/Cellar/maven/current/libexec > Java version: 1.6.0_29, vendor: Apple Inc. > Java home: /Library/Java/JavaVirtualMachines/1.6.0_29-b11-402.jdk/Contents/Home > Default locale: de_DE, platform encoding: MacRoman > OS name: "mac os x", version: "10.7.2", arch: "x86_64", family: "mac" > }}} > Reporter: Mirko Friedenhagen > Assignee: Olivier Lamy > Fix For: 2.9 > > Attachments: checkstyle-report-duplicates-errors-in-aggregate.zip, checkstyle.zip > > > Using a very simple single module project, the aggregated report is created by default and reports an incorrect number of violations, it just doubles the numbers. I checked out http://svn.apache.org/repos/asf/maven/plugins/tags/maven-checkstyle-plugin-2.8 and modified the integration test project {{checkstyle-report}} a little bit: > * I deleted the {{reportSets}} configuration from the {{pom.xml}}. > * I modified {{src/main/java/org/MyClass.java}} to actually have errors. > The build log looks like this: > {code} > [mirko@borg checkstyle-report]$ mvn clean site > [INFO] Scanning for projects... > [INFO] > [INFO] ------------------------------------------------------------------------ > [INFO] Building check-pass 1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------------ > [INFO] > [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ check-pass --- > [INFO] Deleting /Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/target > [INFO] > [INFO] --- maven-site-plugin:3.0:site (default-site) @ check-pass --- > [INFO] configuring report plugin org.apache.maven.plugins:maven-checkstyle-plugin:2.8 > [INFO] Relativizing decoration links with respect to project URL: http://maven.apache.org/ > [INFO] Rendering site with org.apache.maven.skins:maven-default-skin:jar:1.0 skin. > [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 > [INFO] > [INFO] There are 2 checkstyle errors. > [WARNING] Unable to locate Source XRef to link to - DISABLED > [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 > [INFO] > [INFO] There are 4 checkstyle errors. > [WARNING] Unable to locate Source XRef to link to - DISABLED > [INFO] ------------------------------------------------------------------------ > [INFO] BUILD SUCCESS > [INFO] ------------------------------------------------------------------------ > [INFO] Total time: 4.847s > [INFO] Finished at: Tue Nov 29 21:13:40 CET 2011 > [INFO] Final Memory: 12M/81M > [INFO] ------------------------------------------------------------------------ > {code} > {{target/checkstyle-result.xml}} looks like this and reports the same errors twice: > {code} > <?xml version="1.0" encoding="UTF-8"?> > <checkstyle version="5.4"> > <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> > <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> > <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> > </file> > <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> > <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> > <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> > </file> > </checkstyle> > {code} > Both the {{checkstyle}} and {{checkstyle-aggregate}} report are generated and {{checkstyle-aggregate}} reports the same errors twice. I attach the patched project which includes a check in {{verify.groovy}} to assert that only one {{file}} entry is present in the created {{target/checkstyle-result.xml}}. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by JIRA jira@codehaus.org
[ https://jira.codehaus.org/browse/MCHECKSTYLE-167?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=296664#comment-296664 ] Dennis Lundberg commented on MCHECKSTYLE-167: --------------------------------------------- Eddy, What is the attachment about? This issue is closed. > Unconfigured checkstyle plugin duplicates entries in aggregated report > ---------------------------------------------------------------------- > > Key: MCHECKSTYLE-167 > URL: https://jira.codehaus.org/browse/MCHECKSTYLE-167 > Project: Maven 2.x Checkstyle Plugin > Issue Type: Bug > Affects Versions: 2.8 > Environment: {{{ > mvn --version > Apache Maven 3.0.4 (r1206075; 2011-11-25 09:20:29+0100) > Maven home: /usr/local/Cellar/maven/current/libexec > Java version: 1.6.0_29, vendor: Apple Inc. > Java home: /Library/Java/JavaVirtualMachines/1.6.0_29-b11-402.jdk/Contents/Home > Default locale: de_DE, platform encoding: MacRoman > OS name: "mac os x", version: "10.7.2", arch: "x86_64", family: "mac" > }}} > Reporter: Mirko Friedenhagen > Assignee: Olivier Lamy > Fix For: 2.9 > > Attachments: checkstyle-report-duplicates-errors-in-aggregate.zip, checkstyle.zip > > > Using a very simple single module project, the aggregated report is created by default and reports an incorrect number of violations, it just doubles the numbers. I checked out http://svn.apache.org/repos/asf/maven/plugins/tags/maven-checkstyle-plugin-2.8 and modified the integration test project {{checkstyle-report}} a little bit: > * I deleted the {{reportSets}} configuration from the {{pom.xml}}. > * I modified {{src/main/java/org/MyClass.java}} to actually have errors. > The build log looks like this: > {code} > [mirko@borg checkstyle-report]$ mvn clean site > [INFO] Scanning for projects... > [INFO] > [INFO] ------------------------------------------------------------------------ > [INFO] Building check-pass 1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------------ > [INFO] > [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ check-pass --- > [INFO] Deleting /Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/target > [INFO] > [INFO] --- maven-site-plugin:3.0:site (default-site) @ check-pass --- > [INFO] configuring report plugin org.apache.maven.plugins:maven-checkstyle-plugin:2.8 > [INFO] Relativizing decoration links with respect to project URL: http://maven.apache.org/ > [INFO] Rendering site with org.apache.maven.skins:maven-default-skin:jar:1.0 skin. > [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 > [INFO] > [INFO] There are 2 checkstyle errors. > [WARNING] Unable to locate Source XRef to link to - DISABLED > [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 > [INFO] > [INFO] There are 4 checkstyle errors. > [WARNING] Unable to locate Source XRef to link to - DISABLED > [INFO] ------------------------------------------------------------------------ > [INFO] BUILD SUCCESS > [INFO] ------------------------------------------------------------------------ > [INFO] Total time: 4.847s > [INFO] Finished at: Tue Nov 29 21:13:40 CET 2011 > [INFO] Final Memory: 12M/81M > [INFO] ------------------------------------------------------------------------ > {code} > {{target/checkstyle-result.xml}} looks like this and reports the same errors twice: > {code} > <?xml version="1.0" encoding="UTF-8"?> > <checkstyle version="5.4"> > <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> > <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> > <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> > </file> > <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> > <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> > <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> > </file> > </checkstyle> > {code} > Both the {{checkstyle}} and {{checkstyle-aggregate}} report are generated and {{checkstyle-aggregate}} reports the same errors twice. I attach the patched project which includes a check in {{verify.groovy}} to assert that only one {{file}} entry is present in the created {{target/checkstyle-result.xml}}. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by JIRA jira@codehaus.org
[ https://jira.codehaus.org/browse/MCHECKSTYLE-167?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=297602#comment-297602 ] Andrew Hunt commented on MCHECKSTYLE-167: ----------------------------------------- Not sure that the reported fix to the count problem MCHECKSTYLE-167 has been fixed in the checkstyle-aggregate report. If you have a look at http://maven.apache.org/plugins/maven-checkstyle-plugin/project-reports.html, you will see the report repetition AND that the first report has double the issues of the second report. In the checkstyle-aggregate report, each error is reported twice. > Unconfigured checkstyle plugin duplicates entries in aggregated report > ---------------------------------------------------------------------- > > Key: MCHECKSTYLE-167 > URL: https://jira.codehaus.org/browse/MCHECKSTYLE-167 > Project: Maven 2.x Checkstyle Plugin > Issue Type: Bug > Affects Versions: 2.8 > Environment: {{{ > mvn --version > Apache Maven 3.0.4 (r1206075; 2011-11-25 09:20:29+0100) > Maven home: /usr/local/Cellar/maven/current/libexec > Java version: 1.6.0_29, vendor: Apple Inc. > Java home: /Library/Java/JavaVirtualMachines/1.6.0_29-b11-402.jdk/Contents/Home > Default locale: de_DE, platform encoding: MacRoman > OS name: "mac os x", version: "10.7.2", arch: "x86_64", family: "mac" > }}} > Reporter: Mirko Friedenhagen > Assignee: Olivier Lamy > Fix For: 2.9 > > Attachments: checkstyle-report-duplicates-errors-in-aggregate.zip, checkstyle.zip > > > Using a very simple single module project, the aggregated report is created by default and reports an incorrect number of violations, it just doubles the numbers. I checked out http://svn.apache.org/repos/asf/maven/plugins/tags/maven-checkstyle-plugin-2.8 and modified the integration test project {{checkstyle-report}} a little bit: > * I deleted the {{reportSets}} configuration from the {{pom.xml}}. > * I modified {{src/main/java/org/MyClass.java}} to actually have errors. > The build log looks like this: > {code} > [mirko@borg checkstyle-report]$ mvn clean site > [INFO] Scanning for projects... > [INFO] > [INFO] ------------------------------------------------------------------------ > [INFO] Building check-pass 1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------------ > [INFO] > [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ check-pass --- > [INFO] Deleting /Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/target > [INFO] > [INFO] --- maven-site-plugin:3.0:site (default-site) @ check-pass --- > [INFO] configuring report plugin org.apache.maven.plugins:maven-checkstyle-plugin:2.8 > [INFO] Relativizing decoration links with respect to project URL: http://maven.apache.org/ > [INFO] Rendering site with org.apache.maven.skins:maven-default-skin:jar:1.0 skin. > [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 > [INFO] > [INFO] There are 2 checkstyle errors. > [WARNING] Unable to locate Source XRef to link to - DISABLED > [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 > [INFO] > [INFO] There are 4 checkstyle errors. > [WARNING] Unable to locate Source XRef to link to - DISABLED > [INFO] ------------------------------------------------------------------------ > [INFO] BUILD SUCCESS > [INFO] ------------------------------------------------------------------------ > [INFO] Total time: 4.847s > [INFO] Finished at: Tue Nov 29 21:13:40 CET 2011 > [INFO] Final Memory: 12M/81M > [INFO] ------------------------------------------------------------------------ > {code} > {{target/checkstyle-result.xml}} looks like this and reports the same errors twice: > {code} > <?xml version="1.0" encoding="UTF-8"?> > <checkstyle version="5.4"> > <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> > <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> > <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> > </file> > <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> > <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> > <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> > </file> > </checkstyle> > {code} > Both the {{checkstyle}} and {{checkstyle-aggregate}} report are generated and {{checkstyle-aggregate}} reports the same errors twice. I attach the patched project which includes a check in {{verify.groovy}} to assert that only one {{file}} entry is present in the created {{target/checkstyle-result.xml}}. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by JIRA jira@codehaus.org
[ https://jira.codehaus.org/browse/MCHECKSTYLE-167?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dennis Lundberg updated MCHECKSTYLE-167: ---------------------------------------- Fix Version/s: (was: 2.9) > Unconfigured checkstyle plugin duplicates entries in aggregated report > ---------------------------------------------------------------------- > > Key: MCHECKSTYLE-167 > URL: https://jira.codehaus.org/browse/MCHECKSTYLE-167 > Project: Maven 2.x Checkstyle Plugin > Issue Type: Bug > Affects Versions: 2.8 > Environment: {{{ > mvn --version > Apache Maven 3.0.4 (r1206075; 2011-11-25 09:20:29+0100) > Maven home: /usr/local/Cellar/maven/current/libexec > Java version: 1.6.0_29, vendor: Apple Inc. > Java home: /Library/Java/JavaVirtualMachines/1.6.0_29-b11-402.jdk/Contents/Home > Default locale: de_DE, platform encoding: MacRoman > OS name: "mac os x", version: "10.7.2", arch: "x86_64", family: "mac" > }}} > Reporter: Mirko Friedenhagen > Assignee: Dennis Lundberg > Attachments: checkstyle-report-duplicates-errors-in-aggregate.zip, checkstyle.zip > > > Using a very simple single module project, the aggregated report is created by default and reports an incorrect number of violations, it just doubles the numbers. I checked out http://svn.apache.org/repos/asf/maven/plugins/tags/maven-checkstyle-plugin-2.8 and modified the integration test project {{checkstyle-report}} a little bit: > * I deleted the {{reportSets}} configuration from the {{pom.xml}}. > * I modified {{src/main/java/org/MyClass.java}} to actually have errors. > The build log looks like this: > {code} > [mirko@borg checkstyle-report]$ mvn clean site > [INFO] Scanning for projects... > [INFO] > [INFO] ------------------------------------------------------------------------ > [INFO] Building check-pass 1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------------ > [INFO] > [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ check-pass --- > [INFO] Deleting /Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/target > [INFO] > [INFO] --- maven-site-plugin:3.0:site (default-site) @ check-pass --- > [INFO] configuring report plugin org.apache.maven.plugins:maven-checkstyle-plugin:2.8 > [INFO] Relativizing decoration links with respect to project URL: http://maven.apache.org/ > [INFO] Rendering site with org.apache.maven.skins:maven-default-skin:jar:1.0 skin. > [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 > [INFO] > [INFO] There are 2 checkstyle errors. > [WARNING] Unable to locate Source XRef to link to - DISABLED > [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 > [INFO] > [INFO] There are 4 checkstyle errors. > [WARNING] Unable to locate Source XRef to link to - DISABLED > [INFO] ------------------------------------------------------------------------ > [INFO] BUILD SUCCESS > [INFO] ------------------------------------------------------------------------ > [INFO] Total time: 4.847s > [INFO] Finished at: Tue Nov 29 21:13:40 CET 2011 > [INFO] Final Memory: 12M/81M > [INFO] ------------------------------------------------------------------------ > {code} > {{target/checkstyle-result.xml}} looks like this and reports the same errors twice: > {code} > <?xml version="1.0" encoding="UTF-8"?> > <checkstyle version="5.4"> > <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> > <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> > <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> > </file> > <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> > <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> > <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> > </file> > </checkstyle> > {code} > Both the {{checkstyle}} and {{checkstyle-aggregate}} report are generated and {{checkstyle-aggregate}} reports the same errors twice. I attach the patched project which includes a check in {{verify.groovy}} to assert that only one {{file}} entry is present in the created {{target/checkstyle-result.xml}}. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by JIRA jira@codehaus.org
[ https://jira.codehaus.org/browse/MCHECKSTYLE-167?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dennis Lundberg reopened MCHECKSTYLE-167: ----------------------------------------- Assignee: Dennis Lundberg (was: Olivier Lamy) This is a different issue than MCHECKSTYLE-168. > Unconfigured checkstyle plugin duplicates entries in aggregated report > ---------------------------------------------------------------------- > > Key: MCHECKSTYLE-167 > URL: https://jira.codehaus.org/browse/MCHECKSTYLE-167 > Project: Maven 2.x Checkstyle Plugin > Issue Type: Bug > Affects Versions: 2.8 > Environment: {{{ > mvn --version > Apache Maven 3.0.4 (r1206075; 2011-11-25 09:20:29+0100) > Maven home: /usr/local/Cellar/maven/current/libexec > Java version: 1.6.0_29, vendor: Apple Inc. > Java home: /Library/Java/JavaVirtualMachines/1.6.0_29-b11-402.jdk/Contents/Home > Default locale: de_DE, platform encoding: MacRoman > OS name: "mac os x", version: "10.7.2", arch: "x86_64", family: "mac" > }}} > Reporter: Mirko Friedenhagen > Assignee: Dennis Lundberg > Attachments: checkstyle-report-duplicates-errors-in-aggregate.zip, checkstyle.zip > > > Using a very simple single module project, the aggregated report is created by default and reports an incorrect number of violations, it just doubles the numbers. I checked out http://svn.apache.org/repos/asf/maven/plugins/tags/maven-checkstyle-plugin-2.8 and modified the integration test project {{checkstyle-report}} a little bit: > * I deleted the {{reportSets}} configuration from the {{pom.xml}}. > * I modified {{src/main/java/org/MyClass.java}} to actually have errors. > The build log looks like this: > {code} > [mirko@borg checkstyle-report]$ mvn clean site > [INFO] Scanning for projects... > [INFO] > [INFO] ------------------------------------------------------------------------ > [INFO] Building check-pass 1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------------ > [INFO] > [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ check-pass --- > [INFO] Deleting /Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/target > [INFO] > [INFO] --- maven-site-plugin:3.0:site (default-site) @ check-pass --- > [INFO] configuring report plugin org.apache.maven.plugins:maven-checkstyle-plugin:2.8 > [INFO] Relativizing decoration links with respect to project URL: http://maven.apache.org/ > [INFO] Rendering site with org.apache.maven.skins:maven-default-skin:jar:1.0 skin. > [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 > [INFO] > [INFO] There are 2 checkstyle errors. > [WARNING] Unable to locate Source XRef to link to - DISABLED > [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 > [INFO] > [INFO] There are 4 checkstyle errors. > [WARNING] Unable to locate Source XRef to link to - DISABLED > [INFO] ------------------------------------------------------------------------ > [INFO] BUILD SUCCESS > [INFO] ------------------------------------------------------------------------ > [INFO] Total time: 4.847s > [INFO] Finished at: Tue Nov 29 21:13:40 CET 2011 > [INFO] Final Memory: 12M/81M > [INFO] ------------------------------------------------------------------------ > {code} > {{target/checkstyle-result.xml}} looks like this and reports the same errors twice: > {code} > <?xml version="1.0" encoding="UTF-8"?> > <checkstyle version="5.4"> > <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> > <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> > <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> > </file> > <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> > <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> > <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> > </file> > </checkstyle> > {code} > Both the {{checkstyle}} and {{checkstyle-aggregate}} report are generated and {{checkstyle-aggregate}} reports the same errors twice. I attach the patched project which includes a check in {{verify.groovy}} to assert that only one {{file}} entry is present in the created {{target/checkstyle-result.xml}}. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by JIRA jira@codehaus.org
[ https://jira.codehaus.org/browse/MCHECKSTYLE-167?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dennis Lundberg closed MCHECKSTYLE-167. --------------------------------------- Resolution: Fixed Fix Version/s: 2.10 Fixed in [r1362690|http://svn.apache.org/viewvc?view=revision&revision=1362690]. > Unconfigured checkstyle plugin duplicates entries in aggregated report > ---------------------------------------------------------------------- > > Key: MCHECKSTYLE-167 > URL: https://jira.codehaus.org/browse/MCHECKSTYLE-167 > Project: Maven 2.x Checkstyle Plugin > Issue Type: Bug > Affects Versions: 2.8 > Environment: {{{ > mvn --version > Apache Maven 3.0.4 (r1206075; 2011-11-25 09:20:29+0100) > Maven home: /usr/local/Cellar/maven/current/libexec > Java version: 1.6.0_29, vendor: Apple Inc. > Java home: /Library/Java/JavaVirtualMachines/1.6.0_29-b11-402.jdk/Contents/Home > Default locale: de_DE, platform encoding: MacRoman > OS name: "mac os x", version: "10.7.2", arch: "x86_64", family: "mac" > }}} > Reporter: Mirko Friedenhagen > Assignee: Dennis Lundberg > Fix For: 2.10 > > Attachments: checkstyle-report-duplicates-errors-in-aggregate.zip, checkstyle.zip > > > Using a very simple single module project, the aggregated report is created by default and reports an incorrect number of violations, it just doubles the numbers. I checked out http://svn.apache.org/repos/asf/maven/plugins/tags/maven-checkstyle-plugin-2.8 and modified the integration test project {{checkstyle-report}} a little bit: > * I deleted the {{reportSets}} configuration from the {{pom.xml}}. > * I modified {{src/main/java/org/MyClass.java}} to actually have errors. > The build log looks like this: > {code} > [mirko@borg checkstyle-report]$ mvn clean site > [INFO] Scanning for projects... > [INFO] > [INFO] ------------------------------------------------------------------------ > [INFO] Building check-pass 1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------------ > [INFO] > [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ check-pass --- > [INFO] Deleting /Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/target > [INFO] > [INFO] --- maven-site-plugin:3.0:site (default-site) @ check-pass --- > [INFO] configuring report plugin org.apache.maven.plugins:maven-checkstyle-plugin:2.8 > [INFO] Relativizing decoration links with respect to project URL: http://maven.apache.org/ > [INFO] Rendering site with org.apache.maven.skins:maven-default-skin:jar:1.0 skin. > [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 > [INFO] > [INFO] There are 2 checkstyle errors. > [WARNING] Unable to locate Source XRef to link to - DISABLED > [INFO] Generating "Checkstyle" report --- maven-checkstyle-plugin:2.8 > [INFO] > [INFO] There are 4 checkstyle errors. > [WARNING] Unable to locate Source XRef to link to - DISABLED > [INFO] ------------------------------------------------------------------------ > [INFO] BUILD SUCCESS > [INFO] ------------------------------------------------------------------------ > [INFO] Total time: 4.847s > [INFO] Finished at: Tue Nov 29 21:13:40 CET 2011 > [INFO] Final Memory: 12M/81M > [INFO] ------------------------------------------------------------------------ > {code} > {{target/checkstyle-result.xml}} looks like this and reports the same errors twice: > {code} > <?xml version="1.0" encoding="UTF-8"?> > <checkstyle version="5.4"> > <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> > <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> > <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> > </file> > <file name="/Users/mirko/Documents/workspace/maven-checkstyle-plugin/target/it/checkstyle-report/src/main/java/org/MyClass.java"> > <error line="7" column="5" severity="error" message="Missing a Javadoc comment." source="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck"/> > <error line="7" column="22" severity="error" message="Parameter args should be final." source="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck"/> > </file> > </checkstyle> > {code} > Both the {{checkstyle}} and {{checkstyle-aggregate}} report are generated and {{checkstyle-aggregate}} reports the same errors twice. I attach the patched project which includes a check in {{verify.groovy}} to assert that only one {{file}} entry is present in the created {{target/checkstyle-result.xml}}. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira |
| Powered by Nabble | Edit this page |
