Ulli Hafner edited a comment on Bug JENKINS-20460

Thanks for clarifying. The checkstyle plug-in (as all plug-ins based on analysis-core) do support only warnings. So each error tag in checkstyle is converted to a warning. The priority is determined using

if ("error".equalsIgnoreCase(error.getSeverity())) {
    priority = Priority.HIGH;
}
else if ("warning".equalsIgnoreCase(error.getSeverity())) {
    priority = Priority.NORMAL;
}
else if ("info".equalsIgnoreCase(error.getSeverity())) {
    priority = Priority.LOW;
}
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to