Skip to content

Commit 1a0ad7b

Browse files
authored
exclude FastDoubleParser module-info files from jackson-core.jar (#1031)
1 parent fc76da7 commit 1a0ad7b

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

pom.xml

+8-5
Original file line numberDiff line numberDiff line change
@@ -192,11 +192,14 @@ com.fasterxml.jackson.core.*;version=${project.version}
192192
<goal>shade</goal>
193193
</goals>
194194
<configuration>
195-
<artifactSet>
196-
<includes>
197-
<include>ch.randelshofer:fastdoubleparser</include>
198-
</includes>
199-
</artifactSet>
195+
<filters>
196+
<filter>
197+
<artifact>ch.randelshofer:fastdoubleparser</artifact>
198+
<excludes>
199+
<exclude>META-INF/versions/**/module-info.*</exclude>
200+
</excludes>
201+
</filter>
202+
</filters>
200203
<relocations>
201204
<relocation>
202205
<pattern>ch/randelshofer/fastdoubleparser</pattern>

0 commit comments

Comments
 (0)