You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2019/09/06 08:15:21 UTC

[struts] branch WW-5038-upgrade-jackson-databind created (now 8187006)

This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch WW-5038-upgrade-jackson-databind
in repository https://gitbox.apache.org/repos/asf/struts.git.


      at 8187006  WW-5038 Upgrades jackson-databind to version 2.9.9.3 plus upgrades jackson-core to 2.9.9

This branch includes the following new commits:

     new 8187006  WW-5038 Upgrades jackson-databind to version 2.9.9.3 plus upgrades jackson-core to 2.9.9

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[struts] 01/01: WW-5038 Upgrades jackson-databind to version 2.9.9.3 plus upgrades jackson-core to 2.9.9

Posted by lu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch WW-5038-upgrade-jackson-databind
in repository https://gitbox.apache.org/repos/asf/struts.git

commit 8187006c31f1ebdc80f4090a2e1f05c8bdc223f7
Author: Lukasz Lenart <lu...@apache.org>
AuthorDate: Fri Sep 6 10:15:12 2019 +0200

    WW-5038 Upgrades jackson-databind to version 2.9.9.3
    plus upgrades jackson-core to 2.9.9
---
 pom.xml | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index b46d106..60c81ff 100644
--- a/pom.xml
+++ b/pom.xml
@@ -104,7 +104,9 @@
         <tiles.version>3.0.8</tiles.version>
         <tiles-request.version>1.0.7</tiles-request.version>
         <log4j2.version>2.11.1</log4j2.version>
-        <jackson.version>2.9.8</jackson.version>
+        <jackson.version>2.9.9</jackson.version>
+        <!-- FIXME: drop once a new 2.9.10 will be out and all packages will be in sync -->
+        <jackson-databind.version>2.9.9.3</jackson-databind.version>
 
         <!-- Site generation -->
         <fluido-skin.version>1.7</fluido-skin.version>
@@ -1134,7 +1136,7 @@
             <dependency>
                 <groupId>com.fasterxml.jackson.core</groupId>
                 <artifactId>jackson-databind</artifactId>
-                <version>${jackson.version}</version>
+                <version>${jackson-databind.version}</version>
             </dependency>
             <dependency>
                 <groupId>com.fasterxml.jackson.dataformat</groupId>
@@ -1142,6 +1144,14 @@
                 <version>${jackson.version}</version>
             </dependency>
 
+            <!-- FIXME: Workaround for jackson-dataformat-xml issue #340 of forgetting to update stax2-api  -->
+            <!-- https://github.com/FasterXML/jackson-dataformat-xml/issues/340 -->
+            <dependency>
+                <groupId>org.codehaus.woodstox</groupId>
+                <artifactId>stax2-api</artifactId>
+                <version>4.1</version>
+            </dependency>
+
             <dependency>
                 <groupId>org.apache.juneau</groupId>
                 <artifactId>juneau-marshall</artifactId>