You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2021/07/07 06:31:35 UTC

[zeppelin] branch branch-0.9 updated: [ZEPPELIN-5451] Fix the repository URL for downloading Pty4J

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

zjffdu pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/branch-0.9 by this push:
     new 0061c25  [ZEPPELIN-5451] Fix the repository URL for downloading Pty4J
0061c25 is described below

commit 0061c256d6bb985e68d1b8e8668471d4646d8bc6
Author: Kengo Seki <se...@apache.org>
AuthorDate: Wed Jul 7 08:56:39 2021 +0900

    [ZEPPELIN-5451] Fix the repository URL for downloading Pty4J
    
    ### What is this PR for?
    Currently, building Zeppelin fails due to the download problem of Pty4J.
    This PR changes its repository URL to the officially recommended one so that we can pull it successfully.
    
    ### What type of PR is it?
    [Bug Fix]
    
    ### Todos
    * [ ] - Task
    
    ### What is the Jira issue?
    * https://issues.apache.org/jira/browse/ZEPPELIN-5451
    
    ### How should this be tested?
    * Ran `mvn clean package -DskipTests` locally and confirmed that the shell and submarine modules were successfully built.
    
    ### Screenshots (if appropriate)
    
    ### Questions:
    * Does the licenses files need update? No
    * Is there breaking changes for older versions? No
    * Does this needs documentation? No
    
    Author: Kengo Seki <se...@apache.org>
    
    Closes #4164 from sekikn/ZEPPELIN-5451 and squashes the following commits:
    
    7ba1f1c06d [Kengo Seki] [ZEPPELIN-5451] Fix the repository URL for downloading Pty4J
    
    (cherry picked from commit ec69154bf56edd74df09c8646986993cfba3cb35)
    Signed-off-by: Jeff Zhang <zj...@apache.org>
---
 shell/pom.xml     | 4 ++--
 submarine/pom.xml | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/shell/pom.xml b/shell/pom.xml
index 032e58f..2a4aa75 100644
--- a/shell/pom.xml
+++ b/shell/pom.xml
@@ -46,9 +46,9 @@
   <!-- pty4j library not in maven central repository (http://repo.maven.apache.org/maven2) -->
   <repositories>
     <repository>
-      <id>jetbrains-pty4j</id>
+      <id>jetbrains-intellij-dependencies</id>
       <name>JetBrains Pty4j Repository</name>
-      <url>https://dl.bintray.com/jetbrains/pty4j/</url>
+      <url>https://packages.jetbrains.team/maven/p/ij/intellij-dependencies</url>
     </repository>
   </repositories>
 
diff --git a/submarine/pom.xml b/submarine/pom.xml
index a8b4dde..34545f5 100644
--- a/submarine/pom.xml
+++ b/submarine/pom.xml
@@ -45,9 +45,9 @@
 
   <repositories>
     <repository>
-      <id>jetbrains-pty4j</id>
+      <id>jetbrains-intellij-dependencies</id>
       <name>JetBrains Pty4j Repository</name>
-      <url>https://dl.bintray.com/jetbrains/pty4j/</url>
+      <url>https://packages.jetbrains.team/maven/p/ij/intellij-dependencies</url>
     </repository>
   </repositories>