You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2022/01/18 13:19:12 UTC

[flink-shaded] 02/02: [FLINK-25588] Add Jackson JDK8 types to shaded jackson

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

chesnay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-shaded.git

commit e01f2cd4bb9ebcd4663660a2d1330baf4048c630
Author: slinkydeveloper <fr...@gmail.com>
AuthorDate: Tue Jan 18 14:17:08 2022 +0100

    [FLINK-25588] Add Jackson JDK8 types to shaded jackson
---
 flink-shaded-jackson-parent/flink-shaded-jackson-2/pom.xml     | 10 ++++++++++
 .../flink-shaded-jackson-2/src/main/resources/META-INF/NOTICE  |  2 ++
 2 files changed, 12 insertions(+)

diff --git a/flink-shaded-jackson-parent/flink-shaded-jackson-2/pom.xml b/flink-shaded-jackson-parent/flink-shaded-jackson-2/pom.xml
index 30edebf..5aab976 100644
--- a/flink-shaded-jackson-parent/flink-shaded-jackson-2/pom.xml
+++ b/flink-shaded-jackson-parent/flink-shaded-jackson-2/pom.xml
@@ -53,6 +53,16 @@ under the License.
             <groupId>com.fasterxml.jackson.dataformat</groupId>
             <artifactId>jackson-dataformat-csv</artifactId>
         </dependency>
+        <dependency>
+            <!--	Java 8 Date/time	-->
+            <groupId>com.fasterxml.jackson.datatype</groupId>
+            <artifactId>jackson-datatype-jsr310</artifactId>
+        </dependency>
+        <dependency>
+            <!--	Java 8 Datatypes	-->
+            <groupId>com.fasterxml.jackson.datatype</groupId>
+            <artifactId>jackson-datatype-jdk8</artifactId>
+        </dependency>
     </dependencies>
 
     <dependencyManagement>
diff --git a/flink-shaded-jackson-parent/flink-shaded-jackson-2/src/main/resources/META-INF/NOTICE b/flink-shaded-jackson-parent/flink-shaded-jackson-2/src/main/resources/META-INF/NOTICE
index a0e1750..ec4dcc3 100644
--- a/flink-shaded-jackson-parent/flink-shaded-jackson-2/src/main/resources/META-INF/NOTICE
+++ b/flink-shaded-jackson-parent/flink-shaded-jackson-2/src/main/resources/META-INF/NOTICE
@@ -11,4 +11,6 @@ This project bundles the following dependencies under the Apache Software Licens
 - com.fasterxml.jackson.core:jackson-databind:2.12.4
 - com.fasterxml.jackson.dataformat:jackson-dataformat-csv:2.12.4
 - com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.12.4
+- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.12.4
+- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4
 - org.yaml:snakeyaml:1.29