-
Notifications
You must be signed in to change notification settings - Fork 0
Maven
thomcz edited this page Jan 22, 2018
·
4 revisions
- Unpack the archive where you would like to store the binaries, e.g.:
tar zxvf apache-maven-3.x.y.tar.gz -C /usr/local/
- A directory called "apache-maven-3.x.y" will be created in /usr/local/
- Add the bin directory to your PATH, e.g.:
//if unpacked in another directory change /usr/local/ to actual path
export PATH=/usr/local/apache-maven-3.x.y/bin:$PATH
//Windows Powershell
$env:PATH="C:\apache-maven-3.x.y\bin;$($env:Path)"
- Run "mvn --version" to verify that it is correctly installed.