Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,23 @@
<exclude>META-INF/services/org.apache.spark.sql.sources.DataSourceRegister</exclude>
</excludes>
</filter>
<filter>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we manege the filter in the plugin manager like :https://github.com/apache/amoro/blob/master/pom.xml#L1560

Copy link
Member Author

@turboFei turboFei Dec 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would not work once we override the configuration in sub module

<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
<exclude>**/log4j.properties</exclude>
<exclude>META-INF/DEPENDENCIES</exclude>
<exclude>META-INF/*LICENSE*</exclude>
<exclude>META-INF/MANIFEST.MF</exclude>
<exclude>META-INF/*NOTICE*</exclude>
<exclude>META-INF/**/module-info.class</exclude>
<exclude>LICENSE.txt</exclude>
<exclude>NOTICE.txt</exclude>
<exclude>mozilla/*.txt</exclude>
</excludes>
</filter>
</filters>
<relocations>
<!-- relocation amoro spark packages -->
Expand All @@ -134,6 +151,11 @@
<pattern>org.apache.orc</pattern>
<shadedPattern>org.apache.amoro.shade.org.apache.orc</shadedPattern>
</relocation>
<!-- classes in orc-core -->
<relocation>
<pattern>org.threeten</pattern>
<shadedPattern>org.apache.amoro.shade.org.threeten</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.avro</pattern>
<shadedPattern>org.apache.amoro.shade.org.apache.avro</shadedPattern>
Expand Down Expand Up @@ -186,6 +208,18 @@
<pattern>org.apache.commons.lang3</pattern>
<shadedPattern>org.apache.amoro.shade.org.apache.commons.lang3</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.commons.io</pattern>
<shadedPattern>org.apache.amoro.shade.org.apache.commons.io</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.thrift</pattern>
<shadedPattern>org.apache.amoro.shade.org.apache.thrift</shadedPattern>
</relocation>
<relocation>
<pattern>com.github.benmanes</pattern>
<shadedPattern>org.apache.amoro.shade.com.github.benmanes</shadedPattern>
</relocation>

<!-- relocation iceberg -->
<relocation>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,23 @@
<exclude>META-INF/services/org.apache.spark.sql.sources.DataSourceRegister</exclude>
</excludes>
</filter>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
<exclude>**/log4j.properties</exclude>
<exclude>META-INF/DEPENDENCIES</exclude>
<exclude>META-INF/*LICENSE*</exclude>
<exclude>META-INF/MANIFEST.MF</exclude>
<exclude>META-INF/*NOTICE*</exclude>
<exclude>META-INF/**/module-info.class</exclude>
<exclude>LICENSE.txt</exclude>
<exclude>NOTICE.txt</exclude>
<exclude>mozilla/*.txt</exclude>
</excludes>
</filter>
</filters>
<relocations>
<!-- relocation amoro spark packages -->
Expand All @@ -133,6 +150,11 @@
<pattern>org.apache.orc</pattern>
<shadedPattern>org.apache.amoro.shade.org.apache.orc</shadedPattern>
</relocation>
<!-- classes in orc-core -->
<relocation>
<pattern>org.threeten</pattern>
<shadedPattern>org.apache.amoro.shade.org.threeten</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.avro</pattern>
<shadedPattern>org.apache.amoro.shade.org.apache.avro</shadedPattern>
Expand Down Expand Up @@ -185,6 +207,18 @@
<pattern>org.apache.commons.lang3</pattern>
<shadedPattern>org.apache.amoro.shade.org.apache.commons.lang3</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.commons.io</pattern>
<shadedPattern>org.apache.amoro.shade.org.apache.commons.io</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.thrift</pattern>
<shadedPattern>org.apache.amoro.shade.org.apache.thrift</shadedPattern>
</relocation>
<relocation>
<pattern>com.github.benmanes</pattern>
<shadedPattern>org.apache.amoro.shade.com.github.benmanes</shadedPattern>
</relocation>

<!-- relocation iceberg -->
<relocation>
Expand Down