this.plugin = new FreemarkerPlugin(configs);
logger.debug("Using Freemarker as Template Engine");
}
else if (isClassPresent("org.apache.velocity.Template")) {
this.plugin = new VelocityPlugin(configs);
logger.debug("Using Velocity as Template Engine");
}
else if (isClassPresent("org.fusesource.scalate.Template")) {
this.plugin = new ScalatePlugin(configs);