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 2020/12/05 21:27:21 UTC

[maven-ear-plugin] branch mear-153 updated (ad92309 -> 30395be)

This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a change to branch mear-153
in repository https://gitbox.apache.org/repos/asf/maven-ear-plugin.git.


    omit ad92309  [MEAR-216] - Raised version for the new release because of new option / behavior is implemented.
     new 30395be  [MEAR-153] Raised version for next release: new feature implemented

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (ad92309)
            \
             N -- N -- N   refs/heads/mear-153 (30395be)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:


[maven-ear-plugin] 01/01: [MEAR-153] Raised version for next release: new feature implemented

Posted by hb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a commit to branch mear-153
in repository https://gitbox.apache.org/repos/asf/maven-ear-plugin.git

commit 30395beebffb0232d8ad7ffb03af57d919c1e89e
Author: Marat Abrarov <ab...@gmail.com>
AuthorDate: Wed Nov 11 14:16:24 2020 +0300

    [MEAR-153] Raised version for next release: new feature implemented
---
 pom.xml                                                 | 2 +-
 src/main/java/org/apache/maven/plugins/ear/EarMojo.java | 2 +-
 src/site/apt/examples/skinny-modules.apt.vm             | 2 +-
 src/site/apt/index.apt.vm                               | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index af060a1..c6b9207 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,7 +30,7 @@
   </parent>
 
   <artifactId>maven-ear-plugin</artifactId>
-  <version>3.1.1-SNAPSHOT</version>
+  <version>3.2.0-SNAPSHOT</version>
   <packaging>maven-plugin</packaging>
 
   <name>Apache Maven EAR Plugin</name>
diff --git a/src/main/java/org/apache/maven/plugins/ear/EarMojo.java b/src/main/java/org/apache/maven/plugins/ear/EarMojo.java
index 070751b..a474d08 100644
--- a/src/main/java/org/apache/maven/plugins/ear/EarMojo.java
+++ b/src/main/java/org/apache/maven/plugins/ear/EarMojo.java
@@ -218,7 +218,7 @@ public class EarMojo
      * skinnyModules is {@code true} but {@link #skinnyWars} is {@code false} (explicitly or by default) then all
      * modules including WARs are skinny.
      *
-     * @since 3.1.1
+     * @since 3.2.0
      */
     @Parameter( defaultValue = "false" )
     private boolean skinnyModules;
diff --git a/src/site/apt/examples/skinny-modules.apt.vm b/src/site/apt/examples/skinny-modules.apt.vm
index 88d6c6a..36033d5 100644
--- a/src/site/apt/examples/skinny-modules.apt.vm
+++ b/src/site/apt/examples/skinny-modules.apt.vm
@@ -41,7 +41,7 @@ Creating Skinny Modules
 
   * {{{../modules.html#harModule}HAR}}
 
- Starting with version 3.1.1, the Maven EAR Plugin supports referencing
+ Starting with version 3.2.0, the Maven EAR Plugin supports referencing
  external JARs packaged within the EAR via the <<<Class-Path>>> setting
  in EAR module <<<MANIFEST.MF>>>.
 
diff --git a/src/site/apt/index.apt.vm b/src/site/apt/index.apt.vm
index 0220cfa..9b24c40 100644
--- a/src/site/apt/index.apt.vm
+++ b/src/site/apt/index.apt.vm
@@ -63,7 +63,7 @@ ${project.name}
   For more information about the Java EE technology, please visit
   {{http://www.oracle.com/us/technologies/java/enterprise-edition/overview/index.html}}.
 
-* Version 3.1.1
+* Version 3.2.0
 
   {{{./ear-mojo.html#skinnyModules}skinnyModules}} parameter and libDirectory property
   of EAR modules have been implemented.