Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/4777#discussion_r149655646
--- Diff: pom.xml ---
@@ -289,6 +289,48 @@ under the License.
<version>1.8.2</version>
</dependency>
+ <!-- For dependency convergence -->
+ <dependency>
+ <groupId>org.hamcrest</groupId>
+ <artifactId>hamcrest-core</artifactId>
+ <version>${hamcrest.version}</version>
+ </dependency>
+
+ <!-- For dependency convergence -->
+ <dependency>
+ <groupId>org.objenesis</groupId>
+ <artifactId>objenesis</artifactId>
+ <version>2.2</version>
--- End diff --
If possible i would downgrade this to 2.1, as this is the version used by
the runtime dependencies (in particular kryo).
---