no need for beanshell in the core

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@188679 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-06-07 03:29:38 +00:00
parent 3623775987
commit 5442089b82
2 changed files with 5 additions and 5 deletions

View File

@ -64,13 +64,13 @@
<artifactId>commons-cli</artifactId> <artifactId>commons-cli</artifactId>
<version>1.0-beta-2</version> <version>1.0-beta-2</version>
</dependency> </dependency>
<!-- TODO: only here for classloader issues. It used to work when the script classes were inside the component factory... --> <!-- TODO: only here for classloader issues. It used to work when the script classes were inside the component factory...
<dependency> <dependency>
<groupId>org.apache.maven</groupId> <groupId>org.apache.maven</groupId>
<artifactId>maven-script-beanshell</artifactId> <artifactId>maven-script-beanshell</artifactId>
<version>2.0-SNAPSHOT</version> <version>2.0-SNAPSHOT</version>
<scope>runtime</scope> <scope>runtime</scope>
</dependency> </dependency> -->
<dependency> <dependency>
<groupId>plexus</groupId> <groupId>plexus</groupId>
<artifactId>plexus-container-default</artifactId> <artifactId>plexus-container-default</artifactId>

View File

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