You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2009/09/10 18:31:08 UTC

svn commit: r813498 - /maven/maven-3/trunk/maven-core/src/main/java/org/apache/maven/plugin/PluginNotFoundException.java

Author: hboutemy
Date: Thu Sep 10 16:31:07 2009
New Revision: 813498

URL: http://svn.apache.org/viewvc?rev=813498&view=rev
Log:
typo

Modified:
    maven/maven-3/trunk/maven-core/src/main/java/org/apache/maven/plugin/PluginNotFoundException.java

Modified: maven/maven-3/trunk/maven-core/src/main/java/org/apache/maven/plugin/PluginNotFoundException.java
URL: http://svn.apache.org/viewvc/maven/maven-3/trunk/maven-core/src/main/java/org/apache/maven/plugin/PluginNotFoundException.java?rev=813498&r1=813497&r2=813498&view=diff
==============================================================================
--- maven/maven-3/trunk/maven-core/src/main/java/org/apache/maven/plugin/PluginNotFoundException.java (original)
+++ maven/maven-3/trunk/maven-core/src/main/java/org/apache/maven/plugin/PluginNotFoundException.java Thu Sep 10 16:31:07 2009
@@ -40,7 +40,7 @@
     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;
     }