Mirror of Apache Maven 2
Java Other
Clone or download
carview.php?tsp= Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
carview.php?tsp= apache-maven added license headers and schema reference Feb 12, 2012
carview.php?tsp= maven-artifact-manager [MNG-5119] added Overview menu with javadoc and jxr entries Feb 12, 2012
carview.php?tsp= maven-artifact-test [MNG-5119] added Overview menu with javadoc and jxr entries Feb 12, 2012
carview.php?tsp= maven-artifact [MNG-5119] added Overview menu with javadoc and jxr entries Feb 12, 2012
carview.php?tsp= maven-compat added site descriptor Feb 12, 2012
carview.php?tsp= maven-core-it-runner [MNG-5119] added Overview menu with javadoc and jxr entries Feb 12, 2012
carview.php?tsp= maven-core added javadoc May 18, 2012
carview.php?tsp= maven-error-diagnostics [MNG-5119] added Overview menu with javadoc and jxr entries Feb 12, 2012
carview.php?tsp= maven-integration-tests o Fixed version of IT importer May 1, 2009
carview.php?tsp= maven-model [MNG-5119] added Overview menu with javadoc and jxr entries Feb 12, 2012
carview.php?tsp= maven-monitor [MNG-5119] added Overview menu with javadoc and jxr entries Feb 12, 2012
carview.php?tsp= maven-plugin-api [MNG-5119] added Overview menu with javadoc and jxr entries Feb 12, 2012
carview.php?tsp= maven-plugin-descriptor [MNG-5119] added Overview menu with javadoc and jxr entries Feb 12, 2012
carview.php?tsp= maven-plugin-parameter-documenter [MNG-5119] added Overview menu with javadoc and jxr entries Feb 12, 2012
carview.php?tsp= maven-plugin-registry
carview.php?tsp= maven-profile [MNG-5119] added Overview menu with javadoc and jxr entries Feb 12, 2012
carview.php?tsp= maven-project [MNG-5151] use exact same url as Maven 3, without trailing slash Feb 12, 2012
carview.php?tsp= maven-repository-metadata [MNG-5119] added Overview menu with javadoc and jxr entries Feb 12, 2012
carview.php?tsp= maven-settings
carview.php?tsp= maven-toolchain [MNG-5119] added Overview menu with javadoc and jxr entries Feb 12, 2012
carview.php?tsp= src/site [MNG-5119] site organization improvements (merged from 3.x branch) Feb 12, 2012
carview.php?tsp= README.txt adjust version to 2.1.0-SNAPSHOT Feb 19, 2009
carview.php?tsp= build.xml o Fixed bootstrap to work with Ant 1.8.x Sep 26, 2010
carview.php?tsp= maven-ant-tasks-2.1.1.jar o Fixed bootstrap to work with Ant 1.8.x Sep 26, 2010
carview.php?tsp= pom.xml removed maven-script module since directory was removed in r1340860 May 21, 2012

README.txt

-------------------------------------------------------------------------------
Bootstrapping Maven
-------------------------------------------------------------------------------
Set the environment variable M2_HOME pointing to the dir where you want Maven2 installed.
NOTE: presently, the directory {M2_HOME}/bin must be in your path:
set PATH=%PATH%;%M2_HOME%\bin
or
export PATH=$PATH:$M2_HOME/bin
In addition, the last part of the M2_HOME path MUST be of the form maven-$version, eg:
/usr/local/apache-maven-2.1.0-SNAPSHOT
You can set the parameters passed to the Java VM when running Maven2 bootstrap,
setting the environment variable MAVEN_OPTS, e.g.
e.g. to run in offline mode, set MAVEN_OPTS=-o
Then run `ant`.
NOTE: You must run these instructions from this directory!
If you are behind a firewall, you will need to let the bootstrap process know.
To do this, create a file at ~/.m2/settings.xml and paste in the XML below,
substituting your settings for those provided. You can safely skip the
username, password and nonProxyHost elements if they are not relevant to you.
<settings>
  <proxies>
    <proxy>
      <active>true</active>
      <protocol>http</protocol>
      <host>proxy.somewhere.com</host>
      <port>8080</port>
      <username>proxyuser</username>
      <password>somepassword</password>
      <nonProxyHosts>www.google.com|*.somewhere.com</nonProxyHosts>
    </proxy>
  </proxies>
</settings>