Examples of RebelDslClasspath


Examples of org.zeroturnaround.jrebel.gradle.dsl.RebelDslClasspath

        // XXX i can't think of any use for this property and don't know how it works. ask Rein, it is
        //     copy-pasted from maven plugin. maybe it is useless for Gradle and can be deleted.
        // XXX it is undocumented as well.
        generateRebelTask.setConfiguredRelativePath(rebelExtension.getRelativePath());
        
        RebelDslClasspath classpath = rebelExtension.getClasspath();
        if (classpath != null) {
          generateRebelTask.setClasspath(classpath.toRebelClasspath());
        }
       
        RebelDslWar war = rebelExtension.getWar();
        if (war != null) {
          generateRebelTask.setWar(war.toRebelWar());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.