hudson.plugins.analysis.collector.tokens.FixedWarningsCountTokenMacro Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of analysis-collector Show documentation
Show all versions of analysis-collector Show documentation
This plug-in is an add-on for the plug-ins Checkstyle, Dry, FindBugs, PMD, Tasks, and Warnings:
the plug-in collects the different analysis results and shows the results in a combined trend graph.
Additionally, the plug-in provides health reporting and build stability based on these combined results.
The newest version!
package hudson.plugins.analysis.collector.tokens;
import hudson.Extension;
import hudson.plugins.analysis.collector.AnalysisResultAction;
import hudson.plugins.analysis.tokens.AbstractFixedAnnotationsTokenMacro;
/**
* Provides a token that evaluates to the number of new warnings.
*
* @author Ulli Hafner
*/
@Extension(optional = true)
public class FixedWarningsCountTokenMacro extends AbstractFixedAnnotationsTokenMacro {
/**
* Creates a new instance of {@link FixedWarningsCountTokenMacro}.
*/
@SuppressWarnings("unchecked")
public FixedWarningsCountTokenMacro() {
super("ANALYSIS_FIXED", AnalysisResultAction.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy