Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
[FIXED JENKINS-27086] Use aggregated warnings in analysis collector.
Browse files Browse the repository at this point in the history
Also refactored the acceptance tests for analysis collector in order to get the warnings plugin integrated. Note that this requires analysis-core 1.71.
  • Loading branch information
uhafner committed Mar 14, 2015
1 parent b37c863 commit ea14953
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -12,9 +12,9 @@
import hudson.plugins.analysis.core.PluginDescriptor;
import hudson.plugins.analysis.core.ResultAction;
import hudson.plugins.warnings.AggregatedWarningsProjectAction;
import hudson.plugins.warnings.AggregatedWarningsResultAction;
import hudson.plugins.warnings.Messages;
import hudson.plugins.warnings.WarningsDescriptor;
import hudson.plugins.warnings.WarningsResultAction;

/**
* Handles access to the warnings plug-in.
Expand Down Expand Up @@ -44,6 +44,6 @@ public Class<? extends PluginDescriptor> getDescriptor() {

@Override
public Collection<? extends Class<? extends ResultAction<? extends BuildResult>>> getResultActions() {
return Lists.newArrayList(WarningsResultAction.class);
return Lists.newArrayList(AggregatedWarningsResultAction.class);
}
}

0 comments on commit ea14953

Please sign in to comment.