Skip to content

Commit 84b8f47

Browse files
committed
Backport #1027 fix
1 parent 68c8caf commit 84b8f47

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
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>

release-notes/VERSION-2.x

+6-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@ JSON library.
1414
=== Releases ===
1515
------------------------------------------------------------------------
1616

17-
2.15.1 (not yet released)
17+
2.15.2 (not yet released)
18+
19+
#1027: Extra module-info.class in 2.15.1
20+
(reported by @tbnguyen1407)
21+
22+
2.15.1 (16-May-2023))
1823

1924
#999: Gradle metadata for `jackson-core` `2.15.0` adds dependency on
2025
`ch.randelshofer:fastdoubleparser`

0 commit comments

Comments
 (0)