Stream: committers
Topic: Repo1.maven.org now requires https
David Pyke (Jan 15 2020 at 16:15):
I just tried to do a build and the maven request failed: I tried it manually and got:
501 HTTPS Required.
Use https://repo1.maven.org/maven2/
More information at https://links.sonatype.com/central/501-https-required
David Pyke (Jan 15 2020 at 16:15):
Where do I adjust it?
Lloyd McKenzie (Jan 15 2020 at 16:52):
@James Agnew ?
Grahame Grieve (Jan 15 2020 at 19:19):
build what?
David Pyke (Jan 15 2020 at 19:19):
The fhir stack after a new cloning
David Pyke (Jan 15 2020 at 19:50):
trivial change in build.xml fixed it. changed to
<target name="download-ivy" unless="offline">
<mkdir dir="${ivy.jar.dir}"/>
<echo message="installing ivy..."/>
<get src="https://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar"
dest="${ivy.jar.file}" usetimestamp="true"/>
</target>
David Pyke (Jan 15 2020 at 19:51):
Should I open a Jira ticket and push it in?
James Agnew (Jan 15 2020 at 20:26):
Looks like the Maven folks did recently make a change to require https access to the repos. That change makes sense to me.
Last updated: Apr 12 2022 at 19:14 UTC