This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# exit on failure | |
set -e | |
# install jdk | |
wget https://download.oracle.com/java/20/archive/jdk-20.0.2_linux-x64_bin.tar.gz | |
tar -xvf jdk-20.0.2_linux-x64_bin.tar.gz | |
sudo mv jdk-20.0.2 /opt/ | |
JAVA_HOME='/opt/jdk-20.0.2' | |
PATH="$JAVA_HOME/bin:$PATH" | |
export PATH | |
# install maven |