Maven is the de facto standard build tool for Java. There is something that extremely annoys me under Ubuntu.
That every time you need to install the latest maven 3 manually and never got it in the standard Personal Package Archives
('PPAs'). Of course there are external PPA, but always the question arises how much can be
trusted their contributors. Today I again needed to update maven into one vagrant box so I repeat
the exercise again. Maybe this bash script will be useful for the people with a similar problem
in the future. The script just install the latest - 3.3.9 version of Maven. The idea is to can be
modified easily in the future - just to change variables with name and path.
I do not pretend that the script is good - I'm not bash programmer.
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
#!/bin/bash | |
set -x | |
declare -r apacheMavenDownloadUrl="http://apache.cbox.biz/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz" | |
declare -r directoryName="mvn/" | |
if [[ $apacheMavenDownloadUrl =~ ([^/]+)\-bin\.tar\.gz$ ]] | |
then | |
declare -r resultFileName=$BASH_REMATCH | |
declare -r resultDirectoryName=${BASH_REMATCH[1]} | |
else | |
printf "\nIncorrcet format of Apache Maven download url!\n" | |
exit 1 | |
fi | |
mkdir $directoryName | |
cd $directoryName | |
wget $apacheMavenDownloadUrl | |
tar -zxf $resultFileName | |
declare -r workingDir=$(pwd) | |
sudo ln -s "$workingDir/$resultDirectoryName/bin/mvn" /usr/local/bin/mvn | |
rm -v $resultFileName | |
printf "\nMaven 3 is installed!\n" |
Няма коментари:
Публикуване на коментар