You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by do...@apache.org on 2022/08/04 05:30:01 UTC

[orc] branch main updated: ORC-1239: Upgrade maven-shade-plugin to 3.3.0

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

dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/main by this push:
     new 0384e4a71 ORC-1239: Upgrade maven-shade-plugin to 3.3.0
0384e4a71 is described below

commit 0384e4a71c728f3049fa71cc6b1b1bdae9ab8a03
Author: William Hyun <wi...@apache.org>
AuthorDate: Wed Aug 3 22:29:54 2022 -0700

    ORC-1239: Upgrade maven-shade-plugin to 3.3.0
    
    ### What changes were proposed in this pull request?
    This PR aims to upgrade `maven-shade-plugin` to 3.3.0.
    
    ### Why are the changes needed?
    This will bring the latest improvements and bug fixes.
    
    ### How was this patch tested?
    Pass the CIs.
    
    Closes #1210 from williamhyun/mvn-shade.
    
    Authored-by: William Hyun <wi...@apache.org>
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
---
 .gitignore   | 1 +
 java/pom.xml | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index 09f9b47c3..ec032955a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,6 +5,7 @@ target
 .settings
 *~
 *.iml
+dependency-reduced-pom.xml
 *.ipr
 *.iws
 .idea
diff --git a/java/pom.xml b/java/pom.xml
index c2ca38514..73d167965 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -77,7 +77,7 @@
     <zookeeper.version>3.8.0</zookeeper.version>
     <maven.version>3.8.6</maven.version>
     <maven-assembly-plugin.version>3.4.2</maven-assembly-plugin.version>
-    <maven-shade-plugin.version>3.2.4</maven-shade-plugin.version>
+    <maven-shade-plugin.version>3.3.0</maven-shade-plugin.version>
     <slf4j.version>1.7.36</slf4j.version>
     <protoc.artifact>com.google.protobuf:protoc:2.5.0</protoc.artifact>
     <surefire.version>3.0.0-M5</surefire.version>
@@ -329,6 +329,7 @@
               <exclude>**/target/**</exclude>
               <exclude>.idea/**</exclude>
               <exclude>**/*.iml</exclude>
+              <exclude>**/dependency-reduced-pom.xml</exclude>
             </excludes>
           </configuration>
         </plugin>