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 2021/08/14 22:06:41 UTC

[orc] branch main updated: MINOR: Add more exclusion patterns at Spark bench uber jar building (#861)

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 8e47b1d  MINOR: Add more exclusion patterns at Spark bench uber jar building (#861)
8e47b1d is described below

commit 8e47b1da3a5584389a4071f1d7338a5765e580ae
Author: William Hyun <wi...@apache.org>
AuthorDate: Sat Aug 14 15:06:36 2021 -0700

    MINOR: Add more exclusion patterns at Spark bench uber jar building (#861)
    
    ### What changes were proposed in this pull request?
    This PR aims to add more exclusion patterns at Spark bench uber jar building.
    
    ### Why are the changes needed?
    Since ORC-940, it seems that we have more warnings.
    This will suppress more new warnings.
    
    ### How was this patch tested?
    Check GHA build logs.
---
 java/bench/spark/pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/java/bench/spark/pom.xml b/java/bench/spark/pom.xml
index ed1470c..6cec534 100644
--- a/java/bench/spark/pom.xml
+++ b/java/bench/spark/pom.xml
@@ -181,9 +181,17 @@
                     <exclude>META-INF/MANIFEST.MF</exclude>
                     <exclude>META-INF/DEPENDENCIES</exclude>
                     <exclude>META-INF/LICENSE</exclude>
+                    <exclude>META-INF/LICENSE.md</exclude>
                     <exclude>META-INF/NOTICE</exclude>
+                    <exclude>META-INF/NOTICE-binary</exclude>
+                    <exclude>META-INF/NOTICE.md</exclude>
+                    <exclude>META-INF/NOTICE.txt</exclude>
                     <exclude>META-INF/DUMMY.SF</exclude>
                     <exclude>META-INF/DUMMY.DSA</exclude>
+                    <exclude>LICENSE</exclude>
+                    <exclude>NOTICE</exclude>
+                    <exclude>THIRD-PARTY</exclude>
+                    <exclude>about.html</exclude>
                   </excludes>
                 </filter>
               </filters>