You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Krzysztof Krason (JIRA)" <ji...@apache.org> on 2015/07/07 08:36:04 UTC

[jira] [Created] (MCHECKSTYLE-301) Plugin in check goal should print the name of the rule that was violated

Krzysztof Krason created MCHECKSTYLE-301:
--------------------------------------------

             Summary: Plugin in check goal should print the name of the rule that was violated
                 Key: MCHECKSTYLE-301
                 URL: https://issues.apache.org/jira/browse/MCHECKSTYLE-301
             Project: Maven Checkstyle Plugin
          Issue Type: Bug
            Reporter: Krzysztof Krason
            Priority: Minor


Right now the plugin prints the name of file, line number and description of the violation, it would be nice to also have a violation ID/name.

In the case below it should print "AvoidStarImport".
{code}
[INFO] --- maven-checkstyle-plugin:2.15:check (check-sources) @ svt-sds-impl ---
[INFO] Starting audit...
.../project/src/main/java/com/sabre/svt/services/implementation/sds/util/DatesCalculator.java:12: Using the '.*' form of import should be avoided - java.util.*.
Audit done.
{code}

So after the changes it could be (only the relevant part):
{code}
.../project/src/main/java/com/sabre/svt/services/implementation/sds/util/DatesCalculator.java:12 (AvoidStarImport) Using the '.*' form of import should be avoided - java.util.*.
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)