org.apache.maven.plugin.checkstyle.checkstyle-rss.vm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-checkstyle-plugin Show documentation
Show all versions of maven-checkstyle-plugin Show documentation
Generates a report on violations of code style and optionally fails the build if violations are detected.
${project.name} - Checkstyle report
${project.url}
${project.name} - Checkstyle report
en-us
©${copyright}
-
File: $results.getFileCount(),
Errors: $results.getSeverityCount($levelError),
Warnings: $results.getSeverityCount($levelWarning),
Infos: $results.getSeverityCount($levelInfo)
#set ( $reportlink = "${project.url}/checkstyle.html" )
$reportlink
Click here for the full Checkstyle report.
Files
I
W
E
#foreach( $key in $results.files.keySet() )
#set ( $filename = $key.toString() )
#set ( $anchor = $stringutils.replace( $filename, '\\', '/' ) )
#set ( $anchor = $stringutils.replace( $anchor, '/', '.' ) )
$filename
$results.getSeverityCount(${key}, $levelInfo)
$results.getSeverityCount(${key}, $levelWarning)
$results.getSeverityCount(${key}, $levelError)
#end