File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,12 @@ com.fasterxml.jackson.core.*;version=${project.version}
168
168
<filter >
169
169
<artifact >ch.randelshofer:fastdoubleparser</artifact >
170
170
<excludes >
171
+ <exclude >META-INF/LICENSE</exclude >
172
+ <exclude >META-INF/MANIFEST.MF</exclude >
171
173
<exclude >META-INF/versions/**/module-info.*</exclude >
174
+ <!-- 09-Jun-2025, PJ: [core#1446] Exclude Multi-Release classes
175
+ for Java 22 due to issues in Android Linting tool -->
176
+ <exclude >META-INF/versions/22/**</exclude >
172
177
</excludes >
173
178
</filter >
174
179
</filters >
@@ -210,10 +215,6 @@ com.fasterxml.jackson.core.*;version=${project.version}
210
215
<pattern >META-INF/versions/21/ch/randelshofer/fastdoubleparser</pattern >
211
216
<shadedPattern >META-INF/versions/21/com/fasterxml/jackson/core/internal/shaded/fdp/v${project.version.underscore} </shadedPattern >
212
217
</relocation >
213
- <relocation >
214
- <pattern >META-INF/versions/22/ch/randelshofer/fastdoubleparser</pattern >
215
- <shadedPattern >META-INF/versions/22/com/fasterxml/jackson/core/internal/shaded/fdp/v${project.version.underscore} </shadedPattern >
216
- </relocation >
217
218
</relocations >
218
219
</configuration >
219
220
</execution >
Original file line number Diff line number Diff line change @@ -467,3 +467,8 @@ Haruki (@stackunderflow111)
467
467
when custom characterEscape is used
468
468
(2.18.3)
469
469
470
+ Vincent Biret (@baywet)
471
+ * Reported #1446: Invalid package reference to "java.lang.foreign" from
472
+ `com.fasterxml.jackson.core:jackson-core` (from `FastDoubleParser`) [Android]
473
+ (2.18.5)
474
+
Original file line number Diff line number Diff line change @@ -19,6 +19,10 @@ a pure JSON library.
19
19
#1433 : `JsonParser #getNumberType ()` throws `JsonParseException ` when
20
20
the current token is non - numeric instead of returning null
21
21
(reported by @CrazySqueak )
22
+ #1446 : Invalid package reference to "java.lang.foreign" from
23
+ `com .fasterxml .jackson .core :jackson - core ` (from `FastDoubleParser `) [Android ]
24
+ (reported by Vincent B )
25
+ (fix by @pjfanning )
22
26
23
27
2.18 .4 (06 - May - 2025 )
24
28
You can’t perform that action at this time.
0 commit comments