Examples of RebelMainModel


Examples of org.zeroturnaround.jrebel.gradle.model.RebelMainModel

   
    // execute the task
    task.generate();
   
    // validate the eventual model
    RebelMainModel model = task.getRebelModel();
    assertNotNull(model);
   
    List<RebelWebResource> webResources = model.getWebResources();
   
    // TODO very rough test that doesn't actually validate almost anything... just make sure the code runs through
    // TODO make it test the real requirements more thoroughly
    assertTrue(webResources.size() > 0);
   
    log.info("testWeb() XML :  \n" + model.toXmlString());
   
    cleanUp(project);
  }
View Full Code Here

Examples of org.zeroturnaround.jrebel.gradle.model.RebelMainModel

  /**
   * Construct a builder for jar projects
   */
  private RebelMainModel buildModelForJar() {
    log.info("Building rebel backend model for jar ..");
    RebelMainModel model = new RebelMainModel();
   
    buildClasspath(model);
   
    log.info("Backend model eventually built: " + model);
    return model;
View Full Code Here

Examples of org.zeroturnaround.jrebel.gradle.model.RebelMainModel

  /**
   * Construct a builder for war projects
   */
  private RebelMainModel buildModelForWar() {
    log.info("Building rebel backend model for war ..");
    RebelMainModel model = new RebelMainModel();
 
    buildWeb(model);
    buildClasspath(model);
    buildWar(model);

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.