All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hudson.plugins.clover.PluginImpl Maven / Gradle / Ivy

There is a newer version: 4.1.0
Show newest version
package hudson.plugins.clover;

import hudson.Plugin;
import hudson.tasks.BuildStep;
import hudson.plugins.clover.CloverPublisher;

/**
 * Entry point of a plugin.
 *
 * 

* There must be one {@link Plugin} class in each plugin. * See javadoc of {@link Plugin} for more about what can be done on this class. * * @author Kohsuke Kawaguchi * @plugin */ public class PluginImpl extends Plugin { public void start() throws Exception { // plugins normally extend Hudson by providing custom implementations // of 'extension points'. In this example, we'll add one builder. BuildStep.PUBLISHERS.addRecorder(CloverPublisher.DESCRIPTOR); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy