Upgrade Jackson to 2.12.2 (#2226)

Upgrades Jackson from 2.10.3 to 2.12.2.

For release notes see:

* https://github.com/FasterXML/jackson/wiki/Jackson-Release-2.10
* https://github.com/FasterXML/jackson/wiki/Jackson-Release-2.11
* https://github.com/FasterXML/jackson/wiki/Jackson-Release-2.12

Also adds jackson-dataformat-cbor to the feature and runtime BOM so it can be more easily managed as it is a small bundle that is used by a few add-ons.

Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
Wouter Born
2021-03-06 16:48:33 +01:00
committed by GitHub
parent 62c74da0c0
commit 4e27285e5f
2 changed files with 19 additions and 12 deletions
+7 -1
View File
@@ -16,7 +16,7 @@
<name>openHAB Core :: BOM :: Runtime</name>
<properties>
<jackson.version>2.10.3</jackson.version>
<jackson.version>2.12.2</jackson.version>
<jetty.version>9.4.20.v20190813</jetty.version>
<pax.web.version>7.2.19</pax.web.version>
<swagger.version>2.1.0</swagger.version>
@@ -950,6 +950,12 @@
<version>${jackson.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-cbor</artifactId>
<version>${jackson.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>