mirror of https://github.com/apache/maven.git
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:
parent
5d3ebf4434
commit
a20c98aa76
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue