From: Nadav Har'El <[email protected]> Committer: Nadav Har'El <[email protected]> Branch: master
cassandra: fix download for JNA package We downloaded the JNA jar from "maven.java.net", but this host no longer seems to be maintained, and its SSL certificate has expired to the download no longer works. So change the download to the repos1.maven.org, as suggested by the JNA download homepage. Signed-off-by: Nadav Har'El <[email protected]> --- diff --git a/cassandra/Makefile b/cassandra/Makefile --- a/cassandra/Makefile +++ b/cassandra/Makefile @@ -30,7 +30,7 @@ $(tarball): upstream touch $@ $(jna): upstream - cd upstream && wget -c https://maven.java.net/content/repositories/releases/net/java/dev/jna/jna/$(jna_version)/jna-$(jna_version).jar + cd upstream && wget -c https://repo1.maven.org/maven2/net/java/dev/jna/jna/$(jna_version)/jna-$(jna_version).jar touch $@ clean: -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/osv-dev/0000000000004fc0c805bbd484f7%40google.com.
