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:05 UTC

[zeppelin] branch master 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 master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


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

commit ec69154bf56edd74df09c8646986993cfba3cb35
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
---
 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 05c990b..4afcbbc 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 62122ef..31d5a2c 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>