nd4j-jackson: exclude java.xml.stream.XML*Factory from service loader to avoid clashes with other non-shaded jackson etc on classpath

Signed-off-by: AlexDBlack <blacka101@gmail.com>
master
AlexDBlack 2019-12-13 21:41:28 +11:00
parent 709295281e
commit 0ab39a2274
1 changed files with 11 additions and 0 deletions

View File

@ -240,6 +240,17 @@
</relocation>
</relocations>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/services/javax.xml.stream.XMLOutputFactory</exclude>
<exclude>META-INF/services/javax.xml.stream.XMLInputFactory</exclude>
<exclude>META-INF/services/javax.xml.stream.XMLEventFactory</exclude>
</excludes>
</filter>
</filters>
</configuration>
</plugin>
<plugin>