Widening the pointcut to catch more potential places where plugin-loading could be a problem.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@614330 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
John Dennis Casey 2008-01-22 21:33:50 +00:00
parent 8b762300ef
commit f2ea396212
1 changed files with 1 additions and 2 deletions

View File

@ -55,8 +55,7 @@ public privileged aspect LifecycleErrorReporterAspect
&& args( project, .. );
after( MojoBinding binding, MavenProject project ) throwing ( PluginLoaderException cause ):
cflow( le_executeGoalAndHandleFailures( MojoBinding ) )
&& call( * PluginLoader+.loadPlugin( MojoBinding, MavenProject, .. ) )
call( * PluginLoader+.loadPlugin( MojoBinding, MavenProject, .. ) )
&& args( binding, project, .. )
{
getReporter().reportErrorLoadingPlugin( binding, project, cause );