org.jbake.render.RenderingTool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbake-core Show documentation
Show all versions of jbake-core Show documentation
JBake is a Java based open source static site/blog generator for developers.
package org.jbake.render;
import org.apache.commons.configuration2.CompositeConfiguration;
import org.jbake.app.ContentStore;
import org.jbake.app.Renderer;
import org.jbake.app.configuration.JBakeConfiguration;
import org.jbake.template.RenderingException;
import java.io.File;
public interface RenderingTool {
int render(Renderer renderer, ContentStore db, JBakeConfiguration config) throws RenderingException;
@Deprecated
//TODO: remove at 3.0.0
int render(Renderer renderer, ContentStore db, File destination, File templatesPath, CompositeConfiguration config) throws RenderingException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy