Removed excludedDependencySet as it has been implemented another way

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@234200 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephane Nicoll 2005-08-21 13:29:05 +00:00
parent 5d3ebf4434
commit a20c98aa76
1 changed files with 0 additions and 11 deletions

View File

@ -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.
@ -80,14 +78,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.
*
@ -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