Repository: flink Updated Branches: refs/heads/master 95847f4a7 -> 36b663f45
[hotfix][S3] Shade jackson 2.6 Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/36b663f4 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/36b663f4 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/36b663f4 Branch: refs/heads/master Commit: 36b663f4561458408ee68902a1db6a5cd539e1c2 Parents: 95847f4 Author: zentol <[email protected]> Authored: Tue Oct 31 21:03:31 2017 +0100 Committer: zentol <[email protected]> Committed: Tue Oct 31 21:05:26 2017 +0100 ---------------------------------------------------------------------- flink-filesystems/flink-s3-fs-hadoop/pom.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/36b663f4/flink-filesystems/flink-s3-fs-hadoop/pom.xml ---------------------------------------------------------------------- diff --git a/flink-filesystems/flink-s3-fs-hadoop/pom.xml b/flink-filesystems/flink-s3-fs-hadoop/pom.xml index 2d04bf2..1afec78 100644 --- a/flink-filesystems/flink-s3-fs-hadoop/pom.xml +++ b/flink-filesystems/flink-s3-fs-hadoop/pom.xml @@ -128,6 +128,20 @@ under the License. <groupId>org.apache.avro</groupId> <artifactId>avro</artifactId> </exclusion> + <!-- The aws-java-sdk-core requires jackson 2.6, but + hadoop pulls in 2.3 --> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-annotations</artifactId> + </exclusion> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + </exclusion> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> </exclusions> </dependency>
