Skip to content

Commit

Permalink
Do not shade "com.sun.msv.driver.textui" as it drags in a lot of
Browse files Browse the repository at this point in the history
unnecessary transitive dependencies

This fixes FasterXML#96
  • Loading branch information
kwin committed Feb 25, 2020
1 parent 3ec1583 commit 9939cb6
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@
<!-- Too many dynamically resolved dependencies (via class names)
so can not do this, alas:
-->
<minimizeJar>false</minimizeJar>
<minimizeJar>false</minimizeJar>
<artifactSet>
<includes>
<!-- the bundle plugin already did the pulling-in, all we need is the renaming! -->
Expand All @@ -243,6 +243,17 @@
<include>com.sun.xml.bind.jaxb:isorelax</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>net.java.dev.msv:msv-core</artifact>
<includes>
<include>com/sun/msv/**</include>
</includes>
<excludes>
<exclude>com/sun/msv/driver/textui/**</exclude>
</excludes>
</filter>
</filters>
<relocations>
<!-- First, xsdlib (must order first) -->
<relocation>
Expand Down

0 comments on commit 9939cb6

Please sign in to comment.