Package org.apache.maven.archetype.exception

Examples of org.apache.maven.archetype.exception.InvalidPackaging


            {
                packaging = packagingElement.getStringValue();
            }
            if ( !"pom".equals( packaging ) )
            {
                throw new InvalidPackaging(
                    "Unable to add module to the current project as it is not of packaging type 'pom'"
                );
            }

            Element modules = project.element( "modules" );
View Full Code Here

TOP

Related Classes of org.apache.maven.archetype.exception.InvalidPackaging

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.