Skip to content

Commit 690d49b

Browse files
committed
Fix #184
1 parent c2c2d06 commit 690d49b

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

properties/pom.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,10 @@ configuration files as if there was implied nesting structure (by default using
2020
</properties>
2121

2222
<dependencies>
23-
<!-- for now let's consider databind somewhat optional... -->
23+
<!-- starting with 2.10(.4 patch), not optional but fully required -->
2424
<dependency>
2525
<groupId>com.fasterxml.jackson.core</groupId>
2626
<artifactId>jackson-databind</artifactId>
27-
<scope>provided</scope>
2827
</dependency>
2928

3029
<!-- and for testing need annotations; but should be available via `jackson-databind` above -->

release-notes/CREDITS-2.x

+6
Original file line numberDiff line numberDiff line change
@@ -93,3 +93,9 @@ Francisco Colmenares (fcolmenarez@github)
9393
* Reported #179 (properties): `JavaPropsMapper` doesn't close the .properties file
9494
properly after reading
9595
(2.10.4)
96+
97+
Jason van Zyl (jvanzyl@github)
98+
* Reported #184 (properties, yaml): ` jackson-databind` should not be optional/provided dependency
99+
for Properties, YAML modules
100+
(2.10.4)
101+

release-notes/VERSION-2.x

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ Modules:
1515
(reported by Francisco C)
1616
#182 (yaml): Negative numbers not quoted correctly wrt `ALWAYS_QUOTE_NUMBERS_AS_STRINGS
1717
(reported, contributed fix by dpdevin@github)
18+
#184 (properties, yaml): ` jackson-databind` should not be optional/provided dependency
19+
for Properties, YAML modules
20+
(reported by Jason V-Z)
1821
* (yaml) SnakeYAML 1.24 -> 1.26
1922
2023
2.10.3 (03-Mar-2020)

yaml/pom.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@
2323
<dependency>
2424
<groupId>com.fasterxml.jackson.core</groupId>
2525
<artifactId>jackson-databind</artifactId>
26-
<!-- let's make it possible to avoid databind if only using streaming portion -->
27-
<scope>provided</scope>
26+
<!-- starting with 2.10(.4 patch), not optional but fully required -->
2827
</dependency>
2928

3029
<dependency>

0 commit comments

Comments
 (0)