Package org.gradle.api.plugins

Examples of org.gradle.api.plugins.Convention


    public static final String RELOAD_MANUAL = "manual";

    public void apply(Project project) {
        project.apply(ImmutableMap.of("type", WarPlugin.class));
        JettyPluginConvention jettyConvention = new JettyPluginConvention();
        Convention convention = project.getConvention();
        convention.getPlugins().put("jetty", jettyConvention);

        configureMappingRules(project, jettyConvention);
        configureJettyRun(project);
        configureJettyRunWar(project);
        configureJettyStop(project, jettyConvention);
View Full Code Here

TOP

Related Classes of org.gradle.api.plugins.Convention

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.