remove commented out sections from last commit

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@188691 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-06-07 04:46:18 +00:00
parent 9d31796e99
commit 619871e7bd
2 changed files with 5 additions and 13 deletions

View File

@ -54,13 +54,6 @@
<artifactId>maven-plugin-descriptor</artifactId>
<version>2.0-SNAPSHOT</version>
</dependency>
<!-- TODO: remove
<dependency>
<groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-api</artifactId>
<version>2.0-SNAPSHOT</version>
</dependency>
-->
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>

View File

@ -774,12 +774,11 @@ public void contextualize( Context context )
public void initialize()
{
// TODO: configure this from bootstrap or scan lib
artifactFilter = new ExclusionSetFilter( new String[]{"classworlds", /*"doxia-core",*/ "maven-artifact",
"maven-core", "maven-model", "maven-monitor",
"maven-plugin-api", "maven-plugin-descriptor",
"maven-project", /*"maven-reporting-api",*/ "maven-settings",
"plexus-container-default", "plexus-utils",
"wagon-provider-api"} );
artifactFilter = new ExclusionSetFilter( new String[]{"classworlds", "maven-artifact", "maven-core",
"maven-model", "maven-monitor", "maven-plugin-api",
"maven-plugin-descriptor", "maven-project",
"maven-settings", "plexus-container-default",
"plexus-utils", "wagon-provider-api"} );
}
// ----------------------------------------------------------------------