Repository: flink Updated Branches: refs/heads/release-1.4 c701a335b -> eb6380901
[hotfix] [build] Fix diverging snappy versions. This removes the snappy dependency from flink-core, which is no longer needed since we do not have an Avro dependency in flink-core any more. Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/da8446ee Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/da8446ee Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/da8446ee Branch: refs/heads/release-1.4 Commit: da8446ee5d1f305ef633e95908d2ff6e14a31206 Parents: c701a33 Author: Stephan Ewen <[email protected]> Authored: Tue Jan 23 21:01:36 2018 +0100 Committer: Stephan Ewen <[email protected]> Committed: Wed Jan 24 18:06:13 2018 +0100 ---------------------------------------------------------------------- flink-core/pom.xml | 6 ------ flink-runtime/pom.xml | 1 - pom.xml | 2 +- 3 files changed, 1 insertion(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/da8446ee/flink-core/pom.xml ---------------------------------------------------------------------- diff --git a/flink-core/pom.xml b/flink-core/pom.xml index f82e1ed..674c8bd 100644 --- a/flink-core/pom.xml +++ b/flink-core/pom.xml @@ -80,12 +80,6 @@ under the License. <!-- managed version --> </dependency> - <!-- We explicitly depend on snappy since connectors that require it load it through the system class loader --> - <dependency> - <groupId>org.xerial.snappy</groupId> - <artifactId>snappy-java</artifactId> - </dependency> - <!-- ================== test dependencies ================== --> <dependency> http://git-wip-us.apache.org/repos/asf/flink/blob/da8446ee/flink-runtime/pom.xml ---------------------------------------------------------------------- diff --git a/flink-runtime/pom.xml b/flink-runtime/pom.xml index 7be858f..abbe47f 100644 --- a/flink-runtime/pom.xml +++ b/flink-runtime/pom.xml @@ -168,7 +168,6 @@ under the License. <dependency> <groupId>org.xerial.snappy</groupId> <artifactId>snappy-java</artifactId> - <version>1.1.4</version> </dependency> <!-- http://git-wip-us.apache.org/repos/asf/flink/blob/da8446ee/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index abbd5db..f85f335 100644 --- a/pom.xml +++ b/pom.xml @@ -295,7 +295,7 @@ under the License. <dependency> <groupId>org.xerial.snappy</groupId> <artifactId>snappy-java</artifactId> - <version>1.1.1.3</version> + <version>1.1.4</version> </dependency> <!-- Make sure we use a consistent avro version between Flink and Hadoop -->
