Package org.gradle.initialization

Examples of org.gradle.initialization.GradleLauncherFactory


        this.loggingServices = loggingServices;
        this.requestMetaData = requestMetaData;
    }

    public void execute(ExecutionListener executionListener) {
        GradleLauncherFactory gradleLauncherFactory = createGradleLauncherFactory(loggingServices);
        GradleLauncher gradleLauncher = gradleLauncherFactory.newInstance(startParameter, requestMetaData);
        BuildResult buildResult = gradleLauncher.run();
        Throwable failure = buildResult.getFailure();
        if (failure != null) {
            executionListener.onFailure(failure);
        }
View Full Code Here

TOP

Related Classes of org.gradle.initialization.GradleLauncherFactory

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.