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/01 23:54:09 UTC

[maven-shade-plugin] branch MSHADE-275 updated (93de910 -> 7ff8c9d)

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 93de910  Downgraded to 6.0 cause 6.1/6.1.1 cause IllegalArgumentExceptions in jdependency
 discard 5ea044f  Removed exclusions.
 discard 167ff65  WIP - Downgraded jdependency back to 1.2
 discard a6b4edd  [MSHADE-275] - Maven Shade Plugin does not work under Java 10
     add 6b71bde  [MSHADE-281] - Upgrade plexus-utils 3.1.0
     new e33493c  [MSHADE-275] - Maven Shade Plugin does not work under Java 10
     new 2e7033a  WIP - Downgraded jdependency back to 1.2
     new 60f68b8  Removed exclusions.
     new 7ff8c9d  Downgraded 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   (93de910)
            \
             N -- N -- N   refs/heads/MSHADE-275 (7ff8c9d)

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 4 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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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

[maven-shade-plugin] 03/04: Removed exclusions.

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 60f68b84377940eed141e334871ddcde1fed59fe
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Mon Apr 2 00:54:57 2018 +0200

    Removed exclusions.
---
 pom.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pom.xml b/pom.xml
index 4becab8..f83b835 100644
--- a/pom.xml
+++ b/pom.xml
@@ -152,6 +152,7 @@
       <groupId>org.vafer</groupId>
       <artifactId>jdependency</artifactId>
       <version>1.2</version>
+      <!--
       <exclusions>
         <exclusion>
           <groupId>org.ow2.asm</groupId>
@@ -174,6 +175,7 @@
           <artifactId>asm-tree</artifactId>
         </exclusion>
       </exclusions>
+      -->
     </dependency>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>

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

[maven-shade-plugin] 01/04: [MSHADE-275] - Maven Shade Plugin does not work under Java 10

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 e33493cfafa2bbece9c523c12a497f1ca72fb1d3
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
---
 .gitignore |  1 +
 pom.xml    | 28 ++++++++++++++++++++++++++--
 2 files changed, 27 insertions(+), 2 deletions(-)

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..7323c40 100644
--- a/pom.xml
+++ b/pom.xml
@@ -65,10 +65,11 @@
   </distributionManagement>
 
   <properties>
+    <javaVersion>7</javaVersion>
     <mavenVersion>3.0</mavenVersion>
     <currentVersion>${project.version}</currentVersion>
-    <asmVersion>6.0_BETA</asmVersion>
     <surefire.version>2.21.0</surefire.version>
+    <asmVersion>6.1.1</asmVersion>
   </properties>
 
   <contributors>
@@ -131,6 +132,7 @@
       <artifactId>asm-commons</artifactId>
       <version>${asmVersion}</version>
     </dependency>
+
     <dependency>
       <groupId>org.jdom</groupId>
       <artifactId>jdom2</artifactId>
@@ -149,7 +151,29 @@
     <dependency>
       <groupId>org.vafer</groupId>
       <artifactId>jdependency</artifactId>
-      <version>1.2</version>
+      <version>1.3</version>
+      <exclusions>
+        <exclusion>
+          <groupId>org.ow2.asm</groupId>
+          <artifactId>asm</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.ow2.asm</groupId>
+          <artifactId>asm-analysis</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.ow2.asm</groupId>
+          <artifactId>asm-commons</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.ow2.asm</groupId>
+          <artifactId>asm-util</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.ow2.asm</groupId>
+          <artifactId>asm-tree</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>

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

[maven-shade-plugin] 02/04: WIP - Downgraded jdependency back to 1.2

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 2e7033aec7474bcc00f4d4bef20b1e7ed7ea66fb
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Mon Apr 2 00:44:22 2018 +0200

    WIP - Downgraded jdependency back to 1.2
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 7323c40..4becab8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -151,7 +151,7 @@
     <dependency>
       <groupId>org.vafer</groupId>
       <artifactId>jdependency</artifactId>
-      <version>1.3</version>
+      <version>1.2</version>
       <exclusions>
         <exclusion>
           <groupId>org.ow2.asm</groupId>

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

[maven-shade-plugin] 04/04: Downgraded 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 7ff8c9ddb4deb5c13f780ba625d0d2fa26dc3bfb
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Mon Apr 2 01:32:16 2018 +0200

    Downgraded to 6.0 cause 6.1/6.1.1 cause IllegalArgumentExceptions in
    jdependency
---
 pom.xml | 26 +-------------------------
 1 file changed, 1 insertion(+), 25 deletions(-)

diff --git a/pom.xml b/pom.xml
index f83b835..e211dd2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -69,7 +69,7 @@
     <mavenVersion>3.0</mavenVersion>
     <currentVersion>${project.version}</currentVersion>
     <surefire.version>2.21.0</surefire.version>
-    <asmVersion>6.1.1</asmVersion>
+    <asmVersion>6.0</asmVersion>
   </properties>
 
   <contributors>
@@ -152,30 +152,6 @@
       <groupId>org.vafer</groupId>
       <artifactId>jdependency</artifactId>
       <version>1.2</version>
-      <!--
-      <exclusions>
-        <exclusion>
-          <groupId>org.ow2.asm</groupId>
-          <artifactId>asm</artifactId>
-        </exclusion>
-        <exclusion>
-          <groupId>org.ow2.asm</groupId>
-          <artifactId>asm-analysis</artifactId>
-        </exclusion>
-        <exclusion>
-          <groupId>org.ow2.asm</groupId>
-          <artifactId>asm-commons</artifactId>
-        </exclusion>
-        <exclusion>
-          <groupId>org.ow2.asm</groupId>
-          <artifactId>asm-util</artifactId>
-        </exclusion>
-        <exclusion>
-          <groupId>org.ow2.asm</groupId>
-          <artifactId>asm-tree</artifactId>
-        </exclusion>
-      </exclusions>
-      -->
     </dependency>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>

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