mirror of https://github.com/apache/maven.git
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:
parent
8b762300ef
commit
f2ea396212
|
@ -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 );
|
||||
|
|
Loading…
Reference in New Issue