Skip to content

Instantly share code, notes, and snippets.

View aahmed-se's full-sized avatar
🎯
Focusing

Ali Ahmed aahmed-se

🎯
Focusing
View GitHub Profile
#!/bin/sh
set -e
# script to install maven
# todo: add method for checking if latest or automatically grabbing latest
mvn_version=${mvn_version:-3.6.1}
url="https://archive.apache.org/dist/maven/maven-3/${mvn_version}/binaries/apache-maven-${mvn_version}-bin.tar.gz"
install_dir="/opt/maven"