public void execute() throws MojoExecutionException, MojoFailureException {
Embedder embedder = newEmbedder();
getLog().info("Running stories with annotated embedder runner");
try {
embedder.runStoriesWithAnnotatedEmbedderRunner(classNames());
} catch (RuntimeException e) {
throw new MojoFailureException("Failed to run stories with annotated embedder runner", e);
}
}