git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@813498 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Herve Boutemy 2009-09-10 16:31:07 +00:00
parent 4d3e5b3bdd
commit 8f2fd860e2
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ public class PluginNotFoundException
public PluginNotFoundException( Plugin plugin, ArtifactNotFoundException e )
{
super( "Plugin could not be found - check that the goal name is correct: " + e.getMessage(), e.getGroupId(),
e.getArtifactId(), e.getVersion(), "maven-plugin",null, e.getRemoteRepositories(), null, e.getCause() );
e.getArtifactId(), e.getVersion(), "maven-plugin", null, e.getRemoteRepositories(), null, e.getCause() );
this.plugin = plugin;
}