o sorting the artifacts used in the filter

o adding plexus-i18n which has now been added to the site rendering
  mechanism to provide internationalization support.
  


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@179923 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2005-06-04 01:31:13 +00:00
parent fddbcce347
commit 177692f82c
1 changed files with 26 additions and 9 deletions

View File

@ -790,15 +790,32 @@ public class DefaultPluginManager
{
// TODO: configure this from bootstrap or scan lib
// TODO: Note: maven-plugin just re-added until all plugins are switched over...
artifactFilter = new ExclusionSetFilter( new String[]{"maven-core", "maven-artifact", "maven-model",
"maven-settings", "maven-monitor", "maven-plugin-api",
"maven-plugin-descriptor", "plexus-container-default",
"maven-project", "plexus-container-artifact",
"maven-reporting-api", "doxia-core",
"wagon-provider-api", "classworlds", "maven-plugin",
"plexus-marmalade-factory", "maven-script-marmalade",
"maven-script-beanshell", "plexus-bsh-factory", "bsh",
"marmalade-core", "plexus-utils"} );
artifactFilter = new ExclusionSetFilter( new String[]
{
"bsh",
"classworlds",
"doxia-core",
"marmalade-core",
"maven-artifact",
"maven-core",
"maven-model",
"maven-monitor",
"maven-plugin",
"maven-plugin-api",
"maven-plugin-descriptor",
"maven-project",
"maven-reporting-api",
"maven-script-beanshell",
"maven-script-marmalade",
"maven-settings",
"plexus-bsh-factory",
"plexus-container-artifact",
"plexus-container-default",
"plexus-i18n",
"plexus-marmalade-factory",
"plexus-utils",
"wagon-provider-api"
} );
}
// ----------------------------------------------------------------------