@Parameter(property = "jbake.inputDirectory", defaultValue = "${project.basedir}/src/main/jbake", required = true)
protected File inputDirectory;
public void execute() throws MojoExecutionException {
try {
Oven oven = new Oven(inputDirectory, outputDirectory);
oven.setupPaths();
oven.bake();
} catch (Exception e) {
getLog().info("Oops", e);
throw new MojoExecutionException("Failure when running: ", e);
}