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 2015/02/15 09:56:06 UTC

svn commit: r1659900 - /maven/plugin-tools/trunk/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java

Author: hboutemy
Date: Sun Feb 15 08:56:06 2015
New Revision: 1659900

URL: http://svn.apache.org/r1659900
Log:
improved message: mojo source files are read, not only metadata

Modified:
    maven/plugin-tools/trunk/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java

Modified: maven/plugin-tools/trunk/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java?rev=1659900&r1=1659899&r2=1659900&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java (original)
+++ maven/plugin-tools/trunk/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/AbstractGeneratorMojo.java Sun Feb 15 08:56:06 2015
@@ -223,11 +223,11 @@ public abstract class AbstractGeneratorM
         if ( encoding == null || encoding.length() < 1 )
         {
             getLog().warn( "Using platform encoding (" + ReaderFactory.FILE_ENCODING
-                               + " actually) to read mojo metadata, i.e. build is platform dependent!" );
+                               + " actually) to read mojo source files, i.e. build is platform dependent!" );
         }
         else
         {
-            getLog().info( "Using '" + encoding + "' encoding to read mojo metadata." );
+            getLog().info( "Using '" + encoding + "' encoding to read mojo source files." );
         }
 
         try