You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sn...@apache.org on 2011/03/26 17:56:01 UTC

svn commit: r1085765 - /maven/plugins/trunk/maven-acr-plugin/src/main/java/org/apache/maven/plugin/acr/AcrMojo.java

Author: snicoll
Date: Sat Mar 26 16:56:01 2011
New Revision: 1085765

URL: http://svn.apache.org/viewvc?rev=1085765&view=rev
Log:
MACR-1: javadoc

Modified:
    maven/plugins/trunk/maven-acr-plugin/src/main/java/org/apache/maven/plugin/acr/AcrMojo.java

Modified: maven/plugins/trunk/maven-acr-plugin/src/main/java/org/apache/maven/plugin/acr/AcrMojo.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-acr-plugin/src/main/java/org/apache/maven/plugin/acr/AcrMojo.java?rev=1085765&r1=1085764&r2=1085765&view=diff
==============================================================================
--- maven/plugins/trunk/maven-acr-plugin/src/main/java/org/apache/maven/plugin/acr/AcrMojo.java (original)
+++ maven/plugins/trunk/maven-acr-plugin/src/main/java/org/apache/maven/plugin/acr/AcrMojo.java Sat Mar 26 16:56:01 2011
@@ -40,7 +40,7 @@ import java.io.IOException;
 import java.util.List;
 
 /**
- * Build a JEE Application Client jar file from the current project.
+ * Build a JavaEE Application Client jar file from the current project.
  *
  * @author <a href="pablo@anahata-it.com">Pablo Rodriguez</a>
  * @author <a href="snicoll@apache.org">Stephane Nicoll</a>
@@ -136,7 +136,7 @@ public class AcrMojo
      * An expression preceded with this String won't be interpolated.
      * \${foo} will be replaced with ${foo}.
      *
-     * @parameter expression="${car.escapeString}"
+     * @parameter expression="${acr.escapeString}"
      */
     protected String escapeString;
 
@@ -168,13 +168,14 @@ public class AcrMojo
     private MavenSession session;
 
     /**
-     * Generates the application client jar file
+     * Generates the application client jar file.
      *
-     * @todo Add license files in META-INF directory.
      */
     public void execute()
         throws MojoExecutionException
     {
+        //todo: Add license files in META-INF directory
+
         if ( getLog().isInfoEnabled() )
         {
             getLog().info( "Building JavaEE Application client: " + jarName );