Answers for "install maven on windows"

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language