Package org.gradle.launcher.daemon.client

Examples of org.gradle.launcher.daemon.client.DaemonClientGlobalServices


    }

    void configure(ServiceRegistration serviceRegistration) {
        serviceRegistration.add(LoggingServiceRegistry.class, loggingServices);
        serviceRegistration.addProvider(new GlobalScopeServices(false));
        serviceRegistration.addProvider(new DaemonClientGlobalServices());
    }
View Full Code Here


    private ServiceRegistry createGlobalClientServices() {
        return ServiceRegistryBuilder.builder()
                .displayName("Daemon client global services")
                .parent(NativeServices.getInstance())
                .provider(new GlobalScopeServices(false))
                .provider(new DaemonClientGlobalServices())
                .build();
    }
View Full Code Here

TOP

Related Classes of org.gradle.launcher.daemon.client.DaemonClientGlobalServices

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.