File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 36
36
37
37
<!-- Can not use default, since group id != Java package name here -->
38
38
<osgi .export>com.fasterxml.jackson.databind.*;version=${project.version} </osgi .export>
39
- <!-- but imports should work fine with defaults -->
39
+ <osgi .import> <!-- fix for databind#2299: using jackson-databind in an OSGi environment under Android -->
40
+ org.w3c.dom.bootstrap;resolution:=optional,
41
+ </osgi .import>
40
42
41
43
<!-- Generate PackageVersion.java into this directory. -->
42
44
<packageVersion .dir>com/fasterxml/jackson/databind/cfg</packageVersion .dir>
Original file line number Diff line number Diff line change @@ -833,3 +833,7 @@ Joffrey Bion (joffrey-bion@github)
833
833
* Reported #2265 : Inconsistent handling of Collections$UnmodifiableList vs
834
834
Collections$UnmodifiableRandomAccessList
835
835
(2.9.9 )
836
+
837
+
838
+ * Contributed #2299 : Fix for using jackson-databind in an OSGi environment under Android
839
+ (2.9.9 )
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ Project: jackson-databind
14
14
#2251 : Getter that returns an abstract collection breaks a delegating `@JsonCreator`
15
15
#2265 : Inconsistent handling of Collections$UnmodifiableList vs Collections$UnmodifiableRandomAccessList
16
16
(reported by Joffrey B)
17
+ #2299 : Fix for using jackson-databind in an OSGi environment under Android
18
+ (contributed by Christoph F)
17
19
- Prevent String coercion of `null` in `WritableObjectId` when calling `JsonGenerator.writeObjectId()`,
18
20
mostly relevant for formats like YAML that have native Object Ids
19
21
You can’t perform that action at this time.
0 commit comments