This is an automated email from the ASF dual-hosted git repository. nkruber pushed a commit to branch release-1.7 in repository https://gitbox.apache.org/repos/asf/flink.git
commit 5b8154c3c6c60ca8a850d82856db84d4334bc327 Author: Nico Kruber <[email protected]> AuthorDate: Mon Jun 17 19:56:03 2019 +0200 [FLINK-12957][docs] fix Thrift and Protobuf dependency examples These require newer versions nowadays. This closes #8848. --- docs/dev/custom_serializers.md | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/docs/dev/custom_serializers.md b/docs/dev/custom_serializers.md index 2c12e6e..504ef0f 100644 --- a/docs/dev/custom_serializers.md +++ b/docs/dev/custom_serializers.md @@ -67,13 +67,20 @@ for Apache Thrift: <dependency> <groupId>com.twitter</groupId> <artifactId>chill-thrift</artifactId> - <version>0.5.2</version> + <version>0.7.6</version> + <!-- exclusions for dependency conversion --> + <exclusions> + <exclusion> + <groupId>com.esotericsoftware.kryo</groupId> + <artifactId>kryo</artifactId> + </exclusion> + </exclusions> </dependency> <!-- libthrift is required by chill-thrift --> <dependency> <groupId>org.apache.thrift</groupId> <artifactId>libthrift</artifactId> - <version>0.6.1</version> + <version>0.11.0</version> <exclusions> <exclusion> <groupId>javax.servlet</groupId> @@ -95,13 +102,20 @@ For Google Protobuf you need the following Maven dependency: <dependency> <groupId>com.twitter</groupId> <artifactId>chill-protobuf</artifactId> - <version>0.5.2</version> + <version>0.7.6</version> + <!-- exclusions for dependency conversion --> + <exclusions> + <exclusion> + <groupId>com.esotericsoftware.kryo</groupId> + <artifactId>kryo</artifactId> + </exclusion> + </exclusions> </dependency> <!-- We need protobuf for chill-protobuf --> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> - <version>2.5.0</version> + <version>3.7.0</version> </dependency> {% endhighlight %}
