Package de.akquinet.innovation.play.maven.utils

Examples of de.akquinet.innovation.play.maven.utils.CopyDependenciesEmbeddedMojo.execute()


    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);
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.