Package hudson.tasks

Examples of hudson.tasks.ArtifactArchiver.perform()


    @Override
    public boolean perform(DynamicBuild dynamicBuild, Launcher launcher, BuildListener listener) {
        ArtifactArchiver archiver = new ArtifactArchiver((String) options, null, true);
        try {
            return archiver.perform((AbstractBuild) dynamicBuild, launcher, listener);
        } catch (InterruptedException e) {
            Thread.currentThread().interrupt();
            e.printStackTrace(listener.getLogger());
        }
        return false;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.