You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by se...@apache.org on 2017/10/14 23:31:03 UTC

[8/8] flink git commit: [hotfix] [build] Exclude jline from ZooKeeper dependencies

[hotfix] [build] Exclude jline from ZooKeeper dependencies

jlnie is a command line shell used optionally for ZK's
command line tool.


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

Branch: refs/heads/master
Commit: 47fe6189386ebfbef8b1edee0c58a41c13a0c0b6
Parents: dbaf262
Author: Stephan Ewen <se...@apache.org>
Authored: Sat Oct 14 22:11:39 2017 +0200
Committer: Stephan Ewen <se...@apache.org>
Committed: Sat Oct 14 23:18:44 2017 +0200

----------------------------------------------------------------------
 pom.xml | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/47fe6189/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 668557d..52ead11 100644
--- a/pom.xml
+++ b/pom.xml
@@ -467,12 +467,16 @@ under the License.
 						<groupId>org.slf4j</groupId>
 						<artifactId>slf4j-log4j12</artifactId>
 					</exclusion>
-					<!-- Netty from zookeeper is conflicting with akka's, which can cause occasional deadlock inside
-					Netty threads -->
+					<!-- Netty is only needed sor ZK servers, not clients -->
 					<exclusion>
 						<groupId>io.netty</groupId>
 						<artifactId>netty</artifactId>
 					</exclusion>
+					<!-- jline is optional for ZK console shell -->
+					<exclusion>
+						<groupId>jline</groupId>
+						<artifactId>jline</artifactId>
+					</exclusion>
 				</exclusions>
 			</dependency>