Package hudson.model

Examples of hudson.model.BuildListener


        }

        listener.getLogger().println("Publishing rails " + task + " report...");

        ByteArrayOutputStream out = new ByteArrayOutputStream();
        BuildListener stringListener = new StreamBuildListener(out);

        if (rake.perform(build, launcher, stringListener)) {
            buildAction(out, build);
        } else {
            return fail(build, listener, stringListener.toString());
        }

        return true;
    }
View Full Code Here

TOP

Related Classes of hudson.model.BuildListener

Copyright © 2018 www.massapicom. 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.