Answers for "install maven"

7

install maven in ubuntu

sudo apt-get update && sudo apt-get upgrade
sudo apt-get install maven
Posted by: Guest on July-17-2020
2

install maven homebrew

brew install maven
Posted by: Guest on March-17-2020
3

find maven version

mvn --version
Posted by: Guest on June-26-2020
3

how to install maven

Download from https://maven.apache.org/download.cgi
Extract the zip/tar to desired location 
Ensure JAVA_HOME variable is correctly configured to a JDK
For Windows-
Go to MyComputer -> properties -> Advanced System Settings -> Environment variables -> click new button
Add 'MAVEN_HOME' to the directory where Maven is extracted. Eg- "C:\apache-maven-3.8.1"
Edit the path variable and add MAVEN_HOME\bin to it. Use this as it is- "%MAVEN_HOME%\bin" (without quotes)
Save the changes
Check the installation by running the command "mvn -version" in CMD.
Posted by: Guest on May-25-2021
0

install maven on windows

Downloading Apache Maven  from https://maven.apache.org/download.cgi
Posted by: Guest on March-10-2021
0

install maven dependencies

mvn dependency:resolve
Posted by: Guest on August-27-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language