Skip to content

Instantly share code, notes, and snippets.

@pavankjadda
Last active January 16, 2019 14:01
Show Gist options
  • Save pavankjadda/02a2a008430ef4e30c9b2b3d41946fa6 to your computer and use it in GitHub Desktop.
Save pavankjadda/02a2a008430ef4e30c9b2b3d41946fa6 to your computer and use it in GitHub Desktop.
Maven Install Directions on macOS

Maven Install Directions on macOS

$ brew update
$ brew install maven

Check version

$mvn -v

Configure .bash_profile

export M2_HOME=/usr/local/Cellar/maven/3.6.0/libexec
export M2=${M2_HOME}/bin
export PATH=${PATH}:${M2_HOME}/bin

Current maven location

$which mvn
/usr/local/bin/mvn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment