Package org.apache.maven.plugin

Examples of org.apache.maven.plugin.CompilationFailureException


                compilationError = true;
            }
        }

        if (compilationError) {
            throw new CompilationFailureException(messages);
        } else {
            for (Iterator i = messages.iterator(); i.hasNext();) {
                CompilerError message = (CompilerError) i.next();

                getLog().warn(message.toString());
View Full Code Here

TOP

Related Classes of org.apache.maven.plugin.CompilationFailureException

Copyright © 2018 www.massapicom. 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.