You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by sk...@apache.org on 2020/02/11 22:51:09 UTC

[netbeans] branch release90 updated: access to central via https

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

skygo pushed a commit to branch release90
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/release90 by this push:
     new 82d9fe0  access to central via https
82d9fe0 is described below

commit 82d9fe0b4e6267f85f83214aba57c4d74496372c
Author: Eric Barboni <sk...@apache.org>
AuthorDate: Tue Feb 11 23:50:59 2020 +0100

    access to central via https
---
 nbbuild/antsrc/org/netbeans/nbbuild/extlibs/DownloadBinaries.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nbbuild/antsrc/org/netbeans/nbbuild/extlibs/DownloadBinaries.java b/nbbuild/antsrc/org/netbeans/nbbuild/extlibs/DownloadBinaries.java
index 5f46f73..10a23e8 100644
--- a/nbbuild/antsrc/org/netbeans/nbbuild/extlibs/DownloadBinaries.java
+++ b/nbbuild/antsrc/org/netbeans/nbbuild/extlibs/DownloadBinaries.java
@@ -171,7 +171,7 @@ public class DownloadBinaries extends Task {
         if (local.exists()) {
             url = local.toURI().toString();
         } else {
-            url = "http://central.maven.org/maven2/" + cacheName;
+            url = "https://repo.maven.apache.org/maven2/" + cacheName;
         }
         URL u = new URL(url);
         return downloadFromServer(u);


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists