Re: Could not download 2F7553F50B0D14ED811B849C282DA8C1FFC32AAE-asm-all-5.0.1.jar

2020-01-15 Thread Laszlo Kishalmi
That one is only on master and will be released with 11.3 On 1/15/20 12:50 PM, antonio wrote: The DownloadBinariesTask has a "repos" variable you can set. This is a list of Maven repositories to use. This seems to default to     private String repos = "https://repo1.maven.org/maven2/;;

Re: Could not download 2F7553F50B0D14ED811B849C282DA8C1FFC32AAE-asm-all-5.0.1.jar

2020-01-15 Thread John Elliot V | ProgClub
I got the build to work again... I patched this file: nbbuild/antsrc/org/netbeans/nbbuild/extlibs/DownloadBinaries.java like this: private byte[] mavenFile(MavenCoordinate mc) throws IOException { String cacheName = mc.toMavenPath(); File local = new File(new File(new

Re: Could not download 2F7553F50B0D14ED811B849C282DA8C1FFC32AAE-asm-all-5.0.1.jar

2020-01-15 Thread John Elliot V | ProgClub
Hi Antonio, Thanks for your suggestion. There are a number of tasks in nbbuild/build.xml. I tried replacing all instances of: with: but then when I try compiling [1] it fails with: downloadbinaries doesn't support the "repos" attribute Not sure what else I can try... Regards, John

Re: Could not download 2F7553F50B0D14ED811B849C282DA8C1FFC32AAE-asm-all-5.0.1.jar

2020-01-15 Thread antonio
The DownloadBinariesTask has a "repos" variable you can set. This is a list of Maven repositories to use. This seems to default to private String repos = "https://repo1.maven.org/maven2/;; /** * Space separated URL prefixes for maven repositories. * Should generally

Re: Could not download 2F7553F50B0D14ED811B849C282DA8C1FFC32AAE-asm-all-5.0.1.jar

2020-01-15 Thread John Elliot V | ProgClub
Ah, thanks Fabian, that explains it. I tried grepping for central.maven.org, but I haven't been able to figure out how to override the setting for http://central.maven.org/ with https://repo1.maven.org/ -- can you tell me how I can do that..? Regards, John Elliot V [1]

Re: Could not download 2F7553F50B0D14ED811B849C282DA8C1FFC32AAE-asm-all-5.0.1.jar

2020-01-15 Thread Fabian Bahle
Hello John, Maven just announced (https://twitter.com/ASFMavenProject/status/1217495225905577984) that the turned off the HTTP support of Maven Central repo, you should use https://repo1.maven.org instead. Regards, Fabian > Am 15.01.2020 um 21:12 schrieb John