Author: dennisl
Date: Mon Feb  9 10:24:20 2009
New Revision: 742375

URL: http://svn.apache.org/viewvc?rev=742375&view=rev
Log:
o Use default-value instead of expression for some @parameter annotations.
o Improve Javadoc.

Modified:
    
maven/plugins/trunk/maven-ejb-plugin/src/main/java/org/apache/maven/plugin/ejb/EjbMojo.java

Modified: 
maven/plugins/trunk/maven-ejb-plugin/src/main/java/org/apache/maven/plugin/ejb/EjbMojo.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-ejb-plugin/src/main/java/org/apache/maven/plugin/ejb/EjbMojo.java?rev=742375&r1=742374&r2=742375&view=diff
==============================================================================
--- 
maven/plugins/trunk/maven-ejb-plugin/src/main/java/org/apache/maven/plugin/ejb/EjbMojo.java
 (original)
+++ 
maven/plugins/trunk/maven-ejb-plugin/src/main/java/org/apache/maven/plugin/ejb/EjbMojo.java
 Mon Feb  9 10:24:20 2009
@@ -68,7 +68,7 @@
     /**
      * Directory that resources are copied to during the build.
      *
-     * @parameter expression="${project.build.outputDirectory}"
+     * @parameter default-value="${project.build.outputDirectory}"
      * @required
      */
     private String outputDirectory;
@@ -76,7 +76,7 @@
     /**
      * The name of the EJB file to generate.
      *
-     * @parameter expression="${project.build.finalName}"
+     * @parameter default-value="${project.build.finalName}"
      * @required
      */
     private String jarName;
@@ -100,7 +100,7 @@
 
     /**
      * The files and directories to exclude from the client jar. Usage:
-     * 
+     *
      * <pre>
      * &lt;clientExcludes&gt;
      * 
&nbsp;&nbsp;&lt;clientExclude&gt;**&#47;*Ejb.class&lt;&#47;clientExclude&gt;
@@ -146,7 +146,7 @@
     private JarArchiver jarArchiver;
 
     /**
-     * What EJB version should the ejb-plugin generate? Valid values are "2.x" 
or "3.x"
+     * What EJB version should the EJB Plugin generate? Valid values are "2.x" 
or "3.x"
      * (where x is a digit).  When ejbVersion is "3.x", the
      * <code>ejb-jar.xml</code> file is optional.
      * <p/>
@@ -178,6 +178,7 @@
     /**
      * The archive configuration to use.
      * See <a 
href="http://maven.apache.org/shared/maven-archiver/index.html";>Maven Archiver 
Reference</a>.
+     * This version of the EJB Plugin uses Maven Archiver 2.2.
      *
      * @parameter
      */


Reply via email to