码迷,mamicode.com
首页 > 系统相关 > 详细

Maven Install on Mac OS X

时间:2015-03-17 21:53:23      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:maven-mac

Disclaimer: Here is a complete answer taking the last version of OS X (10.9 AKA Mavericks) into account. I am aware that everything I compiled in this answer is already present in the page, but having it clearly in one answer makes it a lot clearer.

First of all, with previous versions of OS X, Maven is installed by default. If Java is missing running you@host:~ $ java in a terminal will prompt you for the Java installation.

With Mac OS X 10.9 (Mavericks), Maven is not installed by default anymore. Different options are then possible:

  • Using Homebrew:

    • you@host:~$ brew install maven will install Maven 3.1 which might cause issues
    • you@host:~$ brew install maven30 will install Maven 3.0 which should be better
  • Using Macports: (I did not test this)

    • you@host:~$ sudo port install maven3 will Install Maven 3.0.5
    • you@host:~$ sudo port select –set maven maven3 selects that version of Maven
  • Installing by hand:
    • Download Maven from its homepage
    • Follow the installation instructions:
      1. Extract the distribution archive, i.e. apache-maven-3.1.1-bin.tar.gz to the directory you wish to install Maven 3.1.1. These instructions assume you chose /usr/local/apache-maven. The subdirectory apache-maven-3.1.1 will be created from the archive.
      2. In a command terminal, add the M2_HOME environment variable, e.g. export M2_HOME=/usr/local/apache-maven/apache-maven-3.1.1.
      3. Add the M2 environment variable, e.g. export M2=$M2_HOME/bin.
      4. Optional: Add the MAVEN_OPTS environment variable to specify JVM properties, e.g. export MAVEN_OPTS=”-Xms256m -Xmx512m”. This environment variable can be used to supply extra options to Maven.
      5. Add M2 environment variable to your path, e.g. export PATH=M2:PATH.
      6. Make sure that JAVA_HOME is set to the location of your JDK, e.g. export JAVA_HOME=(/usr/libexec/javahome?v1.8)andthatJAVA_HOME/bin is in your PATH environment variable (although that might not be necessary with the latest Mac OS X versions and the Oracle JDK).
      7. Run mvn –version to verify that it is correctly installed.

Maven Install on Mac OS X

标签:maven-mac

原文地址:http://blog.csdn.net/leochang130731/article/details/44351693

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!