gradle-graal: Can't download GraalVM 19.3.0
What happened?
I’m not able to download graalvm 19.3 I’m getting
> Task :downloadGraalTooling FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':downloadGraalTooling'.
> java.io.FileNotFoundException: https://github.com/oracle/graal/releases/download//vm-19.3.0/graalvm-ce-linux-amd64-19.3.0.tar.gz
* Try:
What did you want to happen?
Be able to download graalvm, maybe it would better to have a property to specify full graalvm download url
New URLs are
About this issue
- Original URL
- State: closed
- Created 5 years ago
- Reactions: 7
- Comments: 17 (9 by maintainers)
Commits related to this issue
- fix #239 - add property javaVersion to support GraalVM 19.3+ — committed to Zachpocalypse/gradle-graal by deleted user 5 years ago
- fix #239 - use VS 2019 for Java 11+ and add Java 11 E2E tests — committed to Zachpocalypse/gradle-graal by deleted user 5 years ago
- fix #239 - add options to specify VS path — committed to Zachpocalypse/gradle-graal by deleted user 4 years ago
- fix #239 - require JDK 8 and JDK 11 tests — committed to Zachpocalypse/gradle-graal by deleted user 4 years ago
- fix #239 - autodetect vs path and throw exception — committed to Zachpocalypse/gradle-graal by deleted user 4 years ago
- fix #239 - detect vs vars path but fail when needed — committed to Zachpocalypse/gradle-graal by deleted user 4 years ago
- fix #239 - rename VS and Windows related variables and method to contain windows for clarity — committed to Zachpocalypse/gradle-graal by deleted user 4 years ago
it’s a hacky work-around, but you can use an existing GraalVM installation in the meantime:
mkdir -p ~/.gradle/caches/com.palantir.graal/19.3.1/graalvm-ce-19.3.1/bintouch ~/.gradle/caches/com.palantir.graal/19.3.1/graalvm-ce-19.3.1-amd64.tar.gzln -s /usr/lib/jvm/java-11-graalvm/bin/native-image ~/.gradle/caches/com.palantir.graal/19.3.1/graalvm-ce-19.3.1/bin/native-image(substituting versions, architectures and GraalVM directories as necessary)
HTH!