You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
538 B
17 lines
538 B
#!/bin/bash |
|
set -e |
|
|
|
case "$1" in |
|
java8) |
|
echo "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u302-b08/OpenJDK8U-jdk_x64_linux_hotspot_8u302b08.tar.gz" |
|
;; |
|
java11) |
|
echo "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.12%2B7/OpenJDK11U-jdk_x64_linux_hotspot_11.0.12_7.tar.gz" |
|
;; |
|
java16) |
|
echo "https://github.com/adoptium/temurin16-binaries/releases/download/jdk-16.0.2%2B7/OpenJDK16U-jdk_x64_linux_hotspot_16.0.2_7.tar.gz" |
|
;; |
|
*) |
|
echo $"Unknown java version" |
|
exit 1 |
|
esac
|
|
|