Package org.opoo.press.support

Examples of org.opoo.press.support.Compass


   * @see org.opoo.press.maven.plugins.plugin.AbstractInstallMojo#afterInstall(org.opoo.press.SiteManager, java.io.File)
   */
  @Override
  protected void afterInstall(SiteManager siteManager, File siteDir)
      throws MojoExecutionException, MojoFailureException {
    new Compass(siteDir).watch();
  }
View Full Code Here


      getLog().warn("Compass/sass config file not exists, skipping sass compile");
      skipSassCompile = true;
    }else if(skipSassCompile(siteManager, siteDir)){
      getLog().info("Skipping sass compile, css file is up to date.");
    }else{
      new Compass(siteDir).compile();
    }
   
    afterSassCompile(siteManager, siteDir);
  }
View Full Code Here

TOP

Related Classes of org.opoo.press.support.Compass

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.