Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 73907200D71 for ; Wed, 20 Dec 2017 10:33:23 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 72290160C30; Wed, 20 Dec 2017 09:33:23 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 97694160C31 for ; Wed, 20 Dec 2017 10:33:22 +0100 (CET) Received: (qmail 45514 invoked by uid 500); 20 Dec 2017 09:33:21 -0000 Mailing-List: contact commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@maven.apache.org Delivered-To: mailing list commits@maven.apache.org Received: (qmail 45234 invoked by uid 99); 20 Dec 2017 09:33:20 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Dec 2017 09:33:20 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id E5C4B820B0; Wed, 20 Dec 2017 09:33:17 +0000 (UTC) Date: Wed, 20 Dec 2017 09:33:34 +0000 To: "commits@maven.apache.org" Subject: [maven-ear-plugin] 17/45: Removed excludedDependencySet as it has been implemented another way MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: hboutemy@apache.org In-Reply-To: <151376239686.29226.11593743811628907127@gitbox.apache.org> References: <151376239686.29226.11593743811628907127@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: maven-ear-plugin X-Git-Refname: refs/tags/maven-ear-plugin-2.0 X-Git-Reftype: annotated tag X-Git-Rev: 55fa89386778cb602ef2eb2660ec0f7fa0137090 X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20171220093317.E5C4B820B0@gitbox.apache.org> archived-at: Wed, 20 Dec 2017 09:33:23 -0000 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 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" .