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/04/02 00:11:13 UTC

[maven-shade-plugin] branch MSHADE-275 updated (7ff8c9d -> 9074f12)

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

khmarbaise pushed a change to branch MSHADE-275
in repository https://gitbox.apache.org/repos/asf/maven-shade-plugin.git.


 discard 7ff8c9d  Downgraded to 6.0 cause 6.1/6.1.1 cause IllegalArgumentExceptions in jdependency
 discard 60f68b8  Removed exclusions.
 discard 2e7033a  WIP - Downgraded jdependency back to 1.2
 discard e33493c  [MSHADE-275] - Maven Shade Plugin does not work under Java 10
     new 9074f12  [MSHADE-275] - Maven Shade Plugin does not work under Java 10  o jdependency keeping at 1.2  o Downgraded asm to 6.0 cause 6.1/6.1.1 cause IllegalArgumentExceptions in jdependency

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   (7ff8c9d)
            \
             N -- N -- N   refs/heads/MSHADE-275 (9074f12)

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:
 pom.xml | 1 -
 1 file changed, 1 deletion(-)

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

[maven-shade-plugin] 01/01: [MSHADE-275] - Maven Shade Plugin does not work under Java 10 o jdependency keeping at 1.2 o Downgraded asm to 6.0 cause 6.1/6.1.1 cause IllegalArgumentExceptions in jdependency

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

khmarbaise pushed a commit to branch MSHADE-275
in repository https://gitbox.apache.org/repos/asf/maven-shade-plugin.git

commit 9074f123cccb91185523cdff4f6b0af55f5085cc
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Fri Mar 23 17:59:20 2018 +0100

    [MSHADE-275] - Maven Shade Plugin does not work under Java 10
     o jdependency keeping at 1.2
     o Downgraded asm to 6.0 cause 6.1/6.1.1 cause IllegalArgumentExceptions in jdependency
---
 .gitignore | 1 +
 pom.xml    | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index f79c928..7495d7e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,3 +13,4 @@ out/
 /bootstrap
 /dependencies.xml
 .java-version
+.checkstyle
diff --git a/pom.xml b/pom.xml
index 0fc7ae5..0f55633 100644
--- a/pom.xml
+++ b/pom.xml
@@ -67,8 +67,8 @@
   <properties>
     <mavenVersion>3.0</mavenVersion>
     <currentVersion>${project.version}</currentVersion>
-    <asmVersion>6.0_BETA</asmVersion>
     <surefire.version>2.21.0</surefire.version>
+    <asmVersion>6.0</asmVersion>
   </properties>
 
   <contributors>
@@ -131,6 +131,7 @@
       <artifactId>asm-commons</artifactId>
       <version>${asmVersion}</version>
     </dependency>
+
     <dependency>
       <groupId>org.jdom</groupId>
       <artifactId>jdom2</artifactId>

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