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

hudson.plugins.PerfPublisher.HealthPublisher Maven / Gradle / Ivy

Go to download

The PerfPublisher plug-in scans for xml tests reports defined in the administration panel and generates trend graphs, computes stats and underline regressions and modifications. The xml files must be generated by your own testing tool.

There is a newer version: 7.97
Show newest version
package hudson.plugins.PerfPublisher;
import java.io.IOException;
import java.io.PrintStream;

import hudson.model.Descriptor;
import hudson.tasks.Publisher;
import hudson.model.AbstractBuild;
import hudson.Launcher;
import hudson.model.BuildListener;

public abstract class HealthPublisher extends Publisher {

	public boolean perform(final AbstractBuild build, final Launcher launcher, final BuildListener listener) throws InterruptedException, IOException {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy