You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2018/03/09 19:35:25 UTC

[maven-ear-plugin] branch MEAR-262 updated (1764d87 -> cc56c40)

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

khmarbaise pushed a change to branch MEAR-262
in repository https://gitbox.apache.org/repos/asf/maven-ear-plugin.git.


 discard 1764d87  [MEAR-262] - Missing since for outputFileNameMapping parameter
     add 16ce3cd  [MEAR-261] - In cases where fileNameMapping is used fail the build  o Added IT to check if it's working correct.  o Fixed other IT's which would fail otherwise and would    mask the real intention of the IT's.
     new cc56c40  [MEAR-262] - Missing since for outputFileNameMapping parameter

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   (1764d87)
            \
             N -- N -- N   refs/heads/MEAR-262 (cc56c40)

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:
 .../ear-module/pom.xml                                   |  1 -
 .../filenamemapping-usage-fail/invoker.properties}       |  2 +-
 .../pom.xml                                              |  2 +-
 .../it/filenamemapping-usage-fail/verify.groovy          | 16 ++++++++++++++--
 .../war-module/pom.xml                                   |  0
 .../war-module/src/main/webapp/WEB-INF/web.xml           |  0
 .../ear-module/pom.xml                                   |  1 -
 .../org/apache/maven/plugins/ear/AbstractEarMojo.java    |  8 ++++++++
 src/test/resources/projects/project-035/pom.xml          |  1 -
 src/test/resources/projects/project-078/pom.xml          |  1 -
 10 files changed, 24 insertions(+), 8 deletions(-)
 copy src/it/{skinny-wars-filenamemapping-no-version => filenamemapping-usage-fail}/ear-module/pom.xml (94%)
 copy src/{test/resources/projects/project-014/src/main/application/content/ignore.txt => it/filenamemapping-usage-fail/invoker.properties} (96%)
 copy src/it/{skinny-wars-filenamemapping-full => filenamemapping-usage-fail}/pom.xml (96%)
 copy Jenkinsfile => src/it/filenamemapping-usage-fail/verify.groovy (65%)
 copy src/it/{skinny-wars => filenamemapping-usage-fail}/war-module/pom.xml (100%)
 copy src/it/{skinny-wars => filenamemapping-usage-fail}/war-module/src/main/webapp/WEB-INF/web.xml (100%)

-- 
To stop receiving notification emails like this one, please contact
khmarbaise@apache.org.

[maven-ear-plugin] 01/01: [MEAR-262] - Missing since for outputFileNameMapping parameter

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

khmarbaise pushed a commit to branch MEAR-262
in repository https://gitbox.apache.org/repos/asf/maven-ear-plugin.git

commit cc56c40e9392bb83f71968151d7c18dc23b10b3f
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Thu Mar 8 21:08:50 2018 +0100

    [MEAR-262] - Missing since for outputFileNameMapping parameter
---
 src/main/java/org/apache/maven/plugins/ear/AbstractEarMojo.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/main/java/org/apache/maven/plugins/ear/AbstractEarMojo.java b/src/main/java/org/apache/maven/plugins/ear/AbstractEarMojo.java
index 5488426..860d3da 100644
--- a/src/main/java/org/apache/maven/plugins/ear/AbstractEarMojo.java
+++ b/src/main/java/org/apache/maven/plugins/ear/AbstractEarMojo.java
@@ -120,6 +120,8 @@ public abstract class AbstractEarMojo
      * The file name mapping to use for all dependencies included in the EAR file. The mapping between artifacts and the
      * file names which is used within the EAR file. Details see
      * <a href="http://maven.apache.org/shared/maven-mapping/index.html">Maven Mapping Reference</a>.
+     * 
+     * @since 3.0.0
      */
     // CHECKSTYLE_OFF: LineLength
     @Parameter( defaultValue = "@{groupId}@-@{artifactId}@-@{version}@@{dashClassifier?}@.@{extension}@", required = true )

-- 
To stop receiving notification emails like this one, please contact
khmarbaise@apache.org.