hudson.plugins.tasks.TasksPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tasks Show documentation
Show all versions of tasks Show documentation
This plug-in scans the workspace files for open tasks
and generates a trend report.
package hudson.plugins.tasks;
import hudson.Plugin;
import hudson.maven.MavenReporters;
import hudson.tasks.BuildStep;
/**
* Registers the task scanner plug-in publisher.
*
* @author Ulli Hafner
*/
@SuppressWarnings("PMD")
public class TasksPlugin extends Plugin {
/** {@inheritDoc} */
@Override
public void start() throws Exception {
BuildStep.PUBLISHERS.addRecorder(TasksPublisher.TASK_SCANNER_DESCRIPTOR);
MavenReporters.LIST.add(TasksReporter.TASK_SCANNER_DESCRIPTOR);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy