Skip to content

Commit

Permalink
[#2343] Improvement: Fix the warning Discovered module-info.class. Sh…
Browse files Browse the repository at this point in the history
…ading will break its strong encapsulation. (#2345)

### What changes were proposed in this pull request?
Fix the warning `Discovered module-info.class. Shading will break its strong encapsulation`.

### Why are the changes needed?
Fix: #2343 

### Does this PR introduce _any_ user-facing change?
No.

### How was this patch tested?
current UT
  • Loading branch information
cchung100m authored Jan 17, 2025
1 parent 4288efe commit 3bce707
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions client-mr/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@
<artifact>*:*</artifact>
<excludes>
<exclude>LICENSE</exclude>
<exclude>module-info.class</exclude>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
Expand Down
1 change: 1 addition & 0 deletions client-spark/spark2-shaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>module-info.class</exclude>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
Expand Down
1 change: 1 addition & 0 deletions client-spark/spark3-shaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>module-info.class</exclude>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
Expand Down
1 change: 1 addition & 0 deletions client-tez/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@
<artifact>*:*</artifact>
<excludes>
<exclude>LICENSE</exclude>
<exclude>module-info.class</exclude>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
Expand Down
1 change: 1 addition & 0 deletions coordinator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@
<artifact>*:*</artifact>
<excludes>
<exclude>LICENSE</exclude>
<exclude>module-info.class</exclude>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
Expand Down
1 change: 1 addition & 0 deletions server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@
<artifact>*:*</artifact>
<excludes>
<exclude>LICENSE</exclude>
<exclude>module-info.class</exclude>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
Expand Down

0 comments on commit 3bce707

Please sign in to comment.