You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
538 B
Bash
18 lines
538 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
case "$1" in
|
|
java8)
|
|
echo "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u312-b07/OpenJDK8U-jdk_x64_linux_hotspot_8u312b07.tar.gz"
|
|
;;
|
|
java11)
|
|
echo "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.13%2B8/OpenJDK11U-jdk_x64_linux_hotspot_11.0.13_8.tar.gz"
|
|
;;
|
|
java17)
|
|
echo "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.1%2B12/OpenJDK17U-jdk_x64_linux_hotspot_17.0.1_12.tar.gz"
|
|
;;
|
|
*)
|
|
echo $"Unknown java version"
|
|
exit 1
|
|
esac
|