com.github.sviperll.maven.plugin.mustache.MustacheRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mustache-maven-plugin Show documentation
Show all versions of mustache-maven-plugin Show documentation
Render mustache templates during the build
/*
* Copyright 2015 Victor Nazarov .
*/
package com.github.sviperll.maven.plugin.mustache;
import com.github.mustachejava.Mustache;
import java.io.Writer;
/**
*
* @author Victor Nazarov <[email protected]>
*/
public class MustacheRenderer {
private final Writer writer;
MustacheRenderer(Writer writer) {
this.writer = writer;
}
void render(Mustache mustache, Object context) {
mustache.execute(writer, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy