Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
avoid warnings when building shaded tvdformat.jar
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippSalvisberg committed Dec 10, 2023
1 parent c1b4033 commit 8dab919
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions standalone/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,34 @@
<exclude>**</exclude>
</excludes>
</filter>
<filter>
<!-- remove word (transitive), confilict with graal-sdk -->
<artifact>*:*word*</artifact>
<excludes>
<exclude>**</exclude>
</excludes>
</filter>
<filter>
<!-- remove word (nativeimage), confilict with graal-sdk -->
<artifact>*:*nativeimage*</artifact>
<excludes>
<exclude>**</exclude>
</excludes>
</filter>
<filter>
<!-- remove word (collections), confilict with graal-sdk -->
<artifact>*:*collections*</artifact>
<excludes>
<exclude>**</exclude>
</excludes>
</filter>
<filter>
<!-- remove word (polyglot), confilict with graal-sdk -->
<artifact>*:*polyglot*</artifact>
<excludes>
<exclude>**</exclude>
</excludes>
</filter>
</filters>
</configuration>
</plugin>
Expand Down

0 comments on commit 8dab919

Please sign in to comment.