From 3cfbeb70b1feb1f3a8c4d0b2d2f3715a356c80f2 Mon Sep 17 00:00:00 2001 From: Michel Lemay <mlemay@gmail.com> Date: Thu, 31 Mar 2016 12:15:32 -0700 Subject: [PATCH] [SPARK-13710][SHELL][WINDOWS] Fix jline dependency on Windows ## What changes were proposed in this pull request? Exclude jline from curator-recipes since it conflicts with scala 2.11 when running spark-shell. Should not affect scala 2.10 since it is builtin. ## How was this patch tested? Ran spark-shell manually. Author: Michel Lemay <mlemay@gmail.com> Closes #12043 from michellemay/spark-13710-fix-jline-on-windows. --- pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pom.xml b/pom.xml index 9dab0bca74..25d6136421 100644 --- a/pom.xml +++ b/pom.xml @@ -733,6 +733,10 @@ <groupId>org.jboss.netty</groupId> <artifactId>netty</artifactId> </exclusion> + <exclusion> + <groupId>jline</groupId> + <artifactId>jline</artifactId> + </exclusion> </exclusions> </dependency> <dependency> -- GitLab