Package org.gradle.model.internal.inspect

Examples of org.gradle.model.internal.inspect.ModelRuleInspector


        return new DefaultToolingModelBuilderRegistry();
    }

    protected PluginManager createPluginManager() {
        List<MethodRuleDefinitionHandler> handlers = getAll(MethodRuleDefinitionHandler.class);
        ModelRuleInspector inspector = new ModelRuleInspector(Iterables.concat(MethodRuleDefinitionHandler.CORE_HANDLERS, handlers));
        PluginApplicator applicator = new RulesCapablePluginApplicator<ProjectInternal>(project, inspector, get(ModelRuleSourceDetector.class));
        return new PluginManager(get(PluginRegistry.class), new DependencyInjectingInstantiator(this), applicator);
    }
View Full Code Here

TOP

Related Classes of org.gradle.model.internal.inspect.ModelRuleInspector

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.