Examples of ArtifactHandler


Examples of org.apache.maven.artifact.handler.ArtifactHandler

                                                                     isAddGroupIdToProjectName(), getLog()));
        ajdt = enableAjdt(executedProject) && !ajdtVersion.equals("none");
        ready = validate();

        // TODO: Why are we using project in some places, and executedProject in others??
        ArtifactHandler artifactHandler = project.getArtifact().getArtifactHandler();

        // ear projects don't contain java sources
        // pde projects are always java projects
        isJavaProject =
                pde
                || (Constants.LANGUAGE_JAVA.equals(artifactHandler.getLanguage()) && !Constants.PROJECT_PACKAGING_EAR.equals(
                        packaging));

        if (sourceIncludes == null) {
            sourceIncludes = new ArrayList();
        }
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.