Package org.eclipse.m2e.wtp.namemapping

Examples of org.eclipse.m2e.wtp.namemapping.FileNameMapping.mapFileName()


    Set<String> duplicates = new HashSet<String>(size);
   
    for (Artifact artifact : artifacts) {
      ArtifactHelper.fixArtifactHandler(artifact.getArtifactHandler());
      String deployedName = fileNameMapping.mapFileName(artifact);
      String scope = artifact.getScope();
      boolean isDeployed =  (Artifact.SCOPE_COMPILE.equals(scope) || Artifact.SCOPE_RUNTIME.equals(scope))
                            && !artifact.isOptional()
                            && opts.isPackaged("WEB-INF/lib/"+deployedName); //$NON-NLS-1$
      if (isDeployed) {
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.