mirror of https://github.com/apache/maven.git
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:
parent
3623775987
commit
5442089b82
|
@ -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>
|
||||||
|
|
|
@ -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"} );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue