You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2010/09/15 12:45:28 UTC

svn commit: r997273 - in /maven/plugins/trunk/maven-ejb-plugin: pom.xml src/main/java/org/apache/maven/plugin/ejb/EjbMojo.java src/site/apt/examples/filter-deployment-descriptor.apt.vm

Author: dennisl
Date: Wed Sep 15 10:45:28 2010
New Revision: 997273

URL: http://svn.apache.org/viewvc?rev=997273&view=rev
Log:
Next version will be 2.3.

Modified:
    maven/plugins/trunk/maven-ejb-plugin/pom.xml
    maven/plugins/trunk/maven-ejb-plugin/src/main/java/org/apache/maven/plugin/ejb/EjbMojo.java
    maven/plugins/trunk/maven-ejb-plugin/src/site/apt/examples/filter-deployment-descriptor.apt.vm

Modified: maven/plugins/trunk/maven-ejb-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-ejb-plugin/pom.xml?rev=997273&r1=997272&r2=997273&view=diff
==============================================================================
--- maven/plugins/trunk/maven-ejb-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-ejb-plugin/pom.xml Wed Sep 15 10:45:28 2010
@@ -29,7 +29,7 @@ under the License.
   </parent>
 
   <artifactId>maven-ejb-plugin</artifactId>
-  <version>2.2.2-SNAPSHOT</version>
+  <version>2.3-SNAPSHOT</version>
   <packaging>maven-plugin</packaging>
 
   <name>Maven EJB Plugin</name>

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=997273&r1=997272&r2=997273&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 Wed Sep 15 10:45:28 2010
@@ -207,7 +207,7 @@ public class EjbMojo
      * c:\foo\bar will be replaced with c:\\foo\\bar.
      *
      * @parameter default-value="false" expression="${ejb.escapeBackslashesInFilePath}"
-     * @since 2.2.2
+     * @since 2.3
      */
     private boolean escapeBackslashesInFilePath;
 
@@ -216,7 +216,7 @@ public class EjbMojo
      * \${foo} will be replaced with ${foo}.
      *
      * @parameter expression="${ejb.escapeString}"
-     * @since 2.2.2
+     * @since 2.3
      */
     protected String escapeString;
 
@@ -224,7 +224,7 @@ public class EjbMojo
      * To filter the deployment descriptor.
      *
      * @parameter default-value="false" expression="${ejb.filterDeploymentDescriptor}"
-     * @since 2.2.2
+     * @since 2.3
      */
     private boolean filterDeploymentDescriptor;
 
@@ -232,14 +232,14 @@ public class EjbMojo
      * Filters (properties files) to include during the interpolation of the deployment descriptor.
      *
      * @parameter
-     * @since 2.2.2
+     * @since 2.3
      */
     private List filters;
 
     /**
      * @component role="org.apache.maven.shared.filtering.MavenFileFilter" role-hint="default"
      * @required
-     * @since 2.2.2
+     * @since 2.3
      */
     private MavenFileFilter mavenFileFilter;
 
@@ -247,7 +247,7 @@ public class EjbMojo
      * @parameter expression="${session}"
      * @readonly
      * @required
-     * @since 2.2.2
+     * @since 2.3
      */
     private MavenSession session;
 

Modified: maven/plugins/trunk/maven-ejb-plugin/src/site/apt/examples/filter-deployment-descriptor.apt.vm
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-ejb-plugin/src/site/apt/examples/filter-deployment-descriptor.apt.vm?rev=997273&r1=997272&r2=997273&view=diff
==============================================================================
--- maven/plugins/trunk/maven-ejb-plugin/src/site/apt/examples/filter-deployment-descriptor.apt.vm (original)
+++ maven/plugins/trunk/maven-ejb-plugin/src/site/apt/examples/filter-deployment-descriptor.apt.vm Wed Sep 15 10:45:28 2010
@@ -32,7 +32,7 @@ Filter the deployment descriptor
   (<<</META-INF/ejb-jar.xml>>>) for you, if you have the need to inject values
   into it during the build.
 
-  <<Note:>> This feature was added in version 2.2.2 of the EJB Plugin.
+  <<Note:>> This feature was added in version 2.3 of the EJB Plugin.
 
   To filter the deployment descriptor add the following configuration to your
   POM: