Package org.gradle.launcher.daemon.protocol

Examples of org.gradle.launcher.daemon.protocol.BuildStarted


        try {
            Runnable command = new Runnable() {
                public void run() {
                    LOGGER.info("Daemon is about to start building {}. Dispatching build started information...", build);
                    execution.getConnection().buildStarted(new BuildStarted(diagnostics));
                    execution.proceed();
                }
            };

            stateCoordinator.runCommand(command, execution.toString());
View Full Code Here

TOP

Related Classes of org.gradle.launcher.daemon.protocol.BuildStarted

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.