public void execute() throws MojoExecutionException, MojoFailureException {
Embedder embedder = newEmbedder();
getLog().info("Reporting stepdocs using embedder " + embedder);
try {
embedder.reportStepdocs();
} catch (RuntimeException e) {
throw new MojoFailureException("Failed to report stepdocs", e);
}
}