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