You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by st...@apache.org on 2022/08/10 06:16:00 UTC

[phoenix] branch 5.1 updated: PHOENIX-6766 Fix failure of sqlline due to conflicting jline dependency pulled from Hadoop 3.3.

This is an automated email from the ASF dual-hosted git repository.

stoty pushed a commit to branch 5.1
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/5.1 by this push:
     new b12f1f2bbc PHOENIX-6766 Fix failure of sqlline due to conflicting jline dependency pulled from Hadoop 3.3.
b12f1f2bbc is described below

commit b12f1f2bbc57a5a488eb754697459ff8b486f43a
Author: Masatake Iwasaki <iw...@apache.org>
AuthorDate: Tue Aug 9 12:40:08 2022 +0000

    PHOENIX-6766 Fix failure of sqlline due to conflicting jline dependency pulled from Hadoop 3.3.
---
 pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/pom.xml b/pom.xml
index cbd8b2f240..74fab1b26f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -811,6 +811,18 @@
         </exclusions>
         <version>${hadoop.version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.hadoop</groupId>
+        <artifactId>hadoop-yarn-client</artifactId>
+        <version>${hadoop.version}</version>
+        <exclusions>
+          <exclusion>
+            <groupId>org.jline</groupId>
+            <artifactId>jline</artifactId>
+          </exclusion>
+        </exclusions>
+      </dependency>
+
       <!-- Only for shading in phoenix-server - remove ? -->
       <dependency>
         <groupId>org.apache.hadoop</groupId>