This is an automated email from the ASF dual-hosted git repository.
skygo pushed a commit to branch release111
in repository https://gitbox.apache.org/repos/asf/netbeans.git
The following commit(s) were added to refs/heads/release111 by this push:
new 112a5b9 https mandatory to access central
112a5b9 is described below
commit 112a5b9d876bcaae5923471ff6c558b5db2f6d9b
Author: Eric Barboni <[email protected]>
AuthorDate: Thu Jan 16 13:59:59 2020 +0100
https mandatory to access central
---
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 ae33e1c..5fbbc94 100644
--- a/nbbuild/antsrc/org/netbeans/nbbuild/extlibs/DownloadBinaries.java
+++ b/nbbuild/antsrc/org/netbeans/nbbuild/extlibs/DownloadBinaries.java
@@ -163,7 +163,7 @@ public class DownloadBinaries extends Task {
if (local.exists()) {
url = local.toURI().toString();
} else {
- url = "http://central.maven.org/maven2/" + cacheName;
+ url = "https://repo1.maven.org/maven2/" + cacheName;
}
URL u = new URL(url);
return downloadFromServer(u);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists