private void copyPlayDependencies() throws IOException {
getLog().info("Copying Play runtime and its dependencies");
CopyDependenciesEmbeddedMojo copy = new CopyDependenciesEmbeddedMojo(this, "play-test");
try {
copy.execute();
} catch (MojoExecutionException e) {
getLog().error("Cannot copy play runtime", e);
throw new IOException("Error during the resolution of Play 2 dependencies", e);
}