You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2017/12/20 09:33:34 UTC

[maven-ear-plugin] 17/45: Removed excludedDependencySet as it has been implemented another way

This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a commit to annotated tag maven-ear-plugin-2.0
in repository https://gitbox.apache.org/repos/asf/maven-ear-plugin.git

commit 55fa89386778cb602ef2eb2660ec0f7fa0137090
Author: Stephane Nicoll <sn...@apache.org>
AuthorDate: Sun Aug 21 13:29:05 2005 +0000

    Removed excludedDependencySet as it has been implemented another way
    
    git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk/maven-plugins/maven-ear-plugin@234200 13f79535-47bb-0310-9956-ffa450edef68
---
 src/main/java/org/apache/maven/plugin/ear/EarMojo.java | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/src/main/java/org/apache/maven/plugin/ear/EarMojo.java b/src/main/java/org/apache/maven/plugin/ear/EarMojo.java
index fd6577c..195b8ab 100644
--- a/src/main/java/org/apache/maven/plugin/ear/EarMojo.java
+++ b/src/main/java/org/apache/maven/plugin/ear/EarMojo.java
@@ -23,9 +23,7 @@ import org.codehaus.plexus.util.FileUtils;
 
 import java.io.File;
 import java.io.IOException;
-import java.util.ArrayList;
 import java.util.Iterator;
-import java.util.List;
 
 /**
  * Builds J2EE Enteprise Archive (EAR) files.
@@ -81,14 +79,6 @@ public class EarMojo
     private String finalName;
 
     /**
-     * The list of excluded dependencies with format groupId:artifactId[:type].
-     *
-     * @parameter
-     * @TODO handle this field
-     */
-    private List excludedDependencies = new ArrayList();
-
-    /**
      * The maven archiver to use.
      *
      * @parameter
@@ -109,7 +99,6 @@ public class EarMojo
         getLog().debug( "workDirectory[" + getWorkDirectory() + "]" );
         getLog().debug( "outputDirectory[" + outputDirectory + "]" );
         getLog().debug( "finalName[" + finalName + "]" );
-        getLog().debug( "excludedDependencies[" + excludedDependencies + "]" );
 
         // Copy modules
         try

-- 
To stop receiving notification emails like this one, please contact
"commits@maven.apache.org" <co...@maven.apache.org>.