Author: mkleint
Date: Mon Jan 19 23:26:28 2009
New Revision: 735952

URL: http://svn.apache.org/viewvc?rev=735952&view=rev
Log:
fix error message

Modified:
    
maven/plugins/trunk/maven-reactor-plugin/src/main/java/org/apache/maven/plugin/reactor/MakeMojo.java

Modified: 
maven/plugins/trunk/maven-reactor-plugin/src/main/java/org/apache/maven/plugin/reactor/MakeMojo.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-reactor-plugin/src/main/java/org/apache/maven/plugin/reactor/MakeMojo.java?rev=735952&r1=735951&r2=735952&view=diff
==============================================================================
--- 
maven/plugins/trunk/maven-reactor-plugin/src/main/java/org/apache/maven/plugin/reactor/MakeMojo.java
 (original)
+++ 
maven/plugins/trunk/maven-reactor-plugin/src/main/java/org/apache/maven/plugin/reactor/MakeMojo.java
 Mon Jan 19 23:26:28 2009
@@ -120,7 +120,7 @@
         throws MojoExecutionException, MojoFailureException
     {
         if ( artifactList == null && folderList == null ) {
-            throw new MojoFailureException("You must specify either folders or 
projects with -Dmake.folders=foo,baz/bar or 
-Dmake.projects=com.mycompany:foo,com.mycompany:bar");
+            throw new MojoFailureException("You must specify either folders or 
projects with -Dmake.folders=foo,baz/bar or 
-Dmake.artifacts=com.mycompany:foo,com.mycompany:bar");
         }
         String[] reactorIncludes;
         List sortedProjects;


Reply via email to