Skip to content

Commit 2e0c0cb

Browse files
authored
Fix #999: exclude FastDoubleParser dep from Gradle Module Metadata (it's shaded) (#1000)
1 parent eef315d commit 2e0c0cb

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

pom.xml

+11
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,17 @@ com.fasterxml.jackson.core.*;version=${project.version}
163163
<plugin>
164164
<groupId>de.jjohannes</groupId>
165165
<artifactId>gradle-module-metadata-maven-plugin</artifactId>
166+
<!-- 27-Apr-2023, tatu: [core#999]: Need to exclude shaded FDP
167+
dependency from GMM
168+
-->
169+
<configuration>
170+
<removedDependencies>
171+
<dependency>
172+
<groupId>ch.randelshofer</groupId>
173+
<artifactId>fastdoubleparser</artifactId>
174+
</dependency>
175+
</removedDependencies>
176+
</configuration>
166177
</plugin>
167178

168179
<plugin>

release-notes/CREDITS-2.x

+5-2
Original file line numberDiff line numberDiff line change
@@ -343,10 +343,13 @@ Evan Galpin (egalpin@github)
343343
(2.14.0)
344344

345345
Chris Rankin (chrisr3@github)
346-
* Requested #768: Jackson bundles are missing OSGi's osgi.serviceloader metadata
346+
* Requested #768: Jackson bundles are missing OSGi's osgi.serviceloader metadata
347347
(2.14.0)
348-
* Contributed #822: Declare osgi.serviceloader.registrar requirement as optional
348+
* Contributed #822: Declare osgi.serviceloader.registrar requirement as optional
349349
(2.14.0)
350+
* Reported #999: Gradle metadata for `jackson-core` `2.15.0` adds dependency on
351+
`ch.randelshofer:fastdoubleparser`
352+
(2.15.1)
350353

351354
Przemyslaw Gomulka (pgomulka@github)
352355
* Contributed #882: Allow TokenFIlter to skip last elements in arrays

release-notes/VERSION-2.x

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

17+
2.15.1 (not yet released)
18+
19+
#999: Gradle metadata for `jackson-core` `2.15.0` adds dependency on
20+
`ch.randelshofer:fastdoubleparser`
21+
(reported by Chris R)
22+
1723
2.15.0 (23-Apr-2023)
1824

1925
#827: Add numeric value size limits via `StreamReadConstraints` (fixes

0 commit comments

Comments
 (0)