You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by rm...@apache.org on 2015/11/25 16:44:43 UTC

flink git commit: [FLINK-3067] Enforce zkclient 0.7 for Kafka

Repository: flink
Updated Branches:
  refs/heads/master 008060f16 -> 2c507f933


[FLINK-3067] Enforce zkclient 0.7 for Kafka

This closes #1399


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/2c507f93
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/2c507f93
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/2c507f93

Branch: refs/heads/master
Commit: 2c507f93300ad1b53c477e0939f1f2232187b37f
Parents: 008060f
Author: Robert Metzger <rm...@apache.org>
Authored: Tue Nov 24 11:09:28 2015 +0100
Committer: Robert Metzger <rm...@apache.org>
Committed: Wed Nov 25 16:44:00 2015 +0100

----------------------------------------------------------------------
 flink-streaming-connectors/flink-connector-kafka/pom.xml | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/2c507f93/flink-streaming-connectors/flink-connector-kafka/pom.xml
----------------------------------------------------------------------
diff --git a/flink-streaming-connectors/flink-connector-kafka/pom.xml b/flink-streaming-connectors/flink-connector-kafka/pom.xml
index 2ebe844..fe763f3 100644
--- a/flink-streaming-connectors/flink-connector-kafka/pom.xml
+++ b/flink-streaming-connectors/flink-connector-kafka/pom.xml
@@ -92,6 +92,14 @@ under the License.
 			</exclusions>
 		</dependency>
 
+		<!-- force using the latest zkclient -->
+		<dependency>
+			<groupId>com.101tec</groupId>
+			<artifactId>zkclient</artifactId>
+			<version>0.7</version>
+			<type>jar</type>
+		</dependency>
+
 		<dependency>
 			<groupId>com.google.guava</groupId>
 			<artifactId>guava</artifactId>
@@ -113,7 +121,7 @@ under the License.
 		</dependency>
 
 	</dependencies>
-	
+
 	<dependencyManagement>
 		<dependencies>
 			<dependency>
@@ -123,6 +131,7 @@ under the License.
 			</dependency>
 		</dependencies>
 	</dependencyManagement>
+	
 
 	<build>
 		<plugins>