public void execute() throws MojoExecutionException, MojoFailureException {
Embedder embedder = newEmbedder();
getLog().info("Running stories as paths using embedder " + embedder);
try {
embedder.runStoriesAsPaths(storyPaths());
} catch (RuntimeException e) {
throw new MojoFailureException("Failed to run stories as paths", e);
}
}