Skip to content

Commit

Permalink
[FLINK-15868][kinesis] Resolve version conflict between jackson-core …
Browse files Browse the repository at this point in the history
…and jackson-dataformat-cbor
  • Loading branch information
tweise authored and tillrohrmann committed Feb 5, 2020
1 parent c3a85f7 commit e51ad13
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This project bundles the following dependencies under the Apache Software Licens

- com.carrotsearch:hppc:0.7.1
- com.fasterxml.jackson.core:jackson-core:2.10.1
- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.6.6
- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.10.1
- com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.6.6
- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.6.6
- com.google.guava:guava:18.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This project bundles the following dependencies under the Apache Software Licens

- com.carrotsearch:hppc:0.7.1
- com.fasterxml.jackson.core:jackson-core:2.10.1
- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.8.1
- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.10.1
- com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.8.1
- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.8.1
- com.github.spullara.mustache.java:compiler:0.9.3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The Apache Software Foundation (http://www.apache.org/).
This project bundles the following dependencies under the Apache Software License 2.0. (http://www.apache.org/licenses/LICENSE-2.0.txt)

- com.fasterxml.jackson.core:jackson-core:2.10.1
- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.8.10
- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.10.1
- com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.8.10
- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.8.10
- commons-codec:commons-codec:1.10
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The Apache Software Foundation (http://www.apache.org/).
This project bundles the following dependencies under the Apache Software License 2.0. (http://www.apache.org/licenses/LICENSE-2.0.txt)

- com.fasterxml.jackson.core:jackson-core:2.10.1
- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.8.11
- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.10.1
- com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.8.11
- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.8.11
- commons-codec:commons-codec:1.10
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This project bundles the following dependencies under the Apache Software Licens
- com.fasterxml.jackson.core:jackson-annotations:2.10.1
- com.fasterxml.jackson.core:jackson-core:2.10.1
- com.fasterxml.jackson.core:jackson-databind:2.10.1
- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.6.7
- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.10.1
- com.fasterxml.woodstox:woodstox-core:5.0.3
- com.google.guava:guava:11.0.2
- commons-beanutils:commons-beanutils:1.9.3
Expand Down Expand Up @@ -46,4 +46,4 @@ See bundled license files for details.
This project bundles the following dependencies under BSD License (https://opensource.org/licenses/bsd-license.php).
See bundled license files for details.

- org.codehaus.woodstox:stax2-api:3.1.4 (https://github.com/FasterXML/stax2-api/tree/stax2-api-3.1.4)
- org.codehaus.woodstox:stax2-api:3.1.4 (https://github.com/FasterXML/stax2-api/tree/stax2-api-3.1.4)
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This project bundles the following dependencies under the Apache Software Licens
- com.fasterxml.jackson.core:jackson-annotations:2.10.1
- com.fasterxml.jackson.core:jackson-core:2.10.1
- com.fasterxml.jackson.core:jackson-databind:2.10.1
- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.6.7
- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.10.1
- com.fasterxml.woodstox:woodstox-core:5.0.3
- com.google.guava:guava:21.0
- io.airlift:configuration:0.153
Expand Down Expand Up @@ -62,4 +62,4 @@ See bundled license files for details.
This project bundles the following dependencies under BSD License (https://opensource.org/licenses/bsd-license.php).
See bundled license files for details.

- org.codehaus.woodstox:stax2-api:3.1.4 (https://github.com/FasterXML/stax2-api/tree/stax2-api-3.1.4)
- org.codehaus.woodstox:stax2-api:3.1.4 (https://github.com/FasterXML/stax2-api/tree/stax2-api-3.1.4)
13 changes: 10 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -390,19 +390,26 @@ under the License.
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.10.1</version>
<version>${jackson.version}</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.10.1</version>
<version>${jackson.version}</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.10.1</version>
<version>${jackson.version}</version>
</dependency>

<!-- https://issues.apache.org/jira/browse/FLINK-15868 -->
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-cbor</artifactId>
<version>${jackson.version}</version>
</dependency>

<!-- For dependency convergence -->
Expand Down

0 comments on commit e51ad13

Please sign in to comment.