Skip to content

Instantly share code, notes, and snippets.

@cici
Forked from SQiShER/UpdateEnvironmentPlist.sh
Last active September 18, 2015 14:42
Show Gist options
  • Select an option

  • Save cici/359057880d66204c2c41 to your computer and use it in GitHub Desktop.

Select an option

Save cici/359057880d66204c2c41 to your computer and use it in GitHub Desktop.
Two simple commands to resolve problems with Maven installed via Homebrew
defaults write ~/.MacOSX/environment.plist M2_HOME `brew --prefix maven`/libexec
defaults write ~/.MacOSX/environment.plist M2 `brew --prefix maven`/libexec/bin
@cici
Copy link
Author

cici commented Sep 18, 2015

I also did

export M2=brew --prefix maven/libexec/bin
export M2_HOME=brew --prefix maven/libexec

so that I could use maven in my open shell.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment