Apache Maven core
Go to file
John Dennis Casey 7bc8cf9fb1 Modified to check for duplicate repository entries in the aggregated remote repository list as the lineage of projects is built.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@219278 13f79535-47bb-0310-9956-ffa450edef68
2005-07-16 02:05:03 +00:00
benchmark PR: MNG-140 2005-06-21 06:49:49 +00:00
examples/maven-hello-plugin update mojo 2005-06-03 00:47:00 +00:00
maven-1.x-integration remove old cvs ignore files 2005-06-07 05:24:51 +00:00
maven-archetype Update all versions to beta-1-SNAPSHOT 2005-06-27 15:29:14 +00:00
maven-archiver [MNG-551]. Allow adding classpath prefix to manifest Classpath. 2005-07-04 11:59:42 +00:00
maven-artifact Resolving: MNG-397 2005-07-16 01:24:13 +00:00
maven-artifact-ant Update all versions to beta-1-SNAPSHOT 2005-06-27 15:29:14 +00:00
maven-artifact-manager Resolving: MNG-397 2005-07-16 01:24:13 +00:00
maven-artifact-test Update all versions to beta-1-SNAPSHOT 2005-06-27 15:29:14 +00:00
maven-core Resolving: MNG-397 2005-07-16 01:24:13 +00:00
maven-core-it Fixing problem with using distributionManagement repository definition for download of plugins.xml metadata. 2005-07-12 20:08:21 +00:00
maven-core-it-plugin Update all versions to beta-1-SNAPSHOT 2005-06-27 15:29:14 +00:00
maven-core-it-support remove old cvs ignore files 2005-06-07 05:24:51 +00:00
maven-core-it-verifier Cleaned up plugin-version resolution. 2005-07-14 20:35:23 +00:00
maven-mboot2 Resolving: MNG-482 2005-07-15 19:04:20 +00:00
maven-meeper add objectweb 2005-06-17 09:31:57 +00:00
maven-model Working on: MNG-377 2005-07-07 00:17:37 +00:00
maven-monitor Update all versions to beta-1-SNAPSHOT 2005-06-27 15:29:14 +00:00
maven-plugin-api Update all versions to beta-1-SNAPSHOT 2005-06-27 15:29:14 +00:00
maven-plugin-descriptor Resolving: MNG-482 2005-07-15 19:04:20 +00:00
maven-plugin-mapping Fixed logic problem with multiple plugin repositories and exception handling. 2005-07-15 16:11:34 +00:00
maven-plugin-registry Cleaned up plugin-version resolution. 2005-07-14 20:35:23 +00:00
maven-plugin-tools Update all versions to beta-1-SNAPSHOT 2005-06-27 15:29:14 +00:00
maven-plugins Upgraded to plexus-site-renderer-1.0-alpha-2 and corrected a NPE 2005-07-15 22:55:33 +00:00
maven-profile Update all versions to beta-1-SNAPSHOT 2005-06-27 15:29:14 +00:00
maven-project Modified to check for duplicate repository entries in the aggregated remote repository list as the lineage of projects is built. 2005-07-16 02:05:03 +00:00
maven-reporting [MNG-564]. Add exception handling. 2005-07-11 15:04:13 +00:00
maven-reports MNG-411: all transitive dependencies report 2005-07-15 23:31:53 +00:00
maven-repository-tools remove old cvs ignore files 2005-06-07 05:24:51 +00:00
maven-script Update all versions to beta-1-SNAPSHOT 2005-06-27 15:29:14 +00:00
maven-settings Cleaned up plugin-version resolution. 2005-07-14 20:35:23 +00:00
maven-site o applying http://jira.codehaus.org/browse/MNG-571 2005-07-12 12:06:17 +00:00
sandbox Move maven-ear-plugin to maven-plugins 2005-07-04 14:09:46 +00:00
README.txt o applying patch provided with: http://jira.codehaus.org/browse/MNG-499 2005-07-06 00:24:22 +00:00
ci.sh change message when it is skipped due to already running 2005-06-07 05:18:41 +00:00
m2-bootstrap-all.bat Cleaned up plugin-version resolution. 2005-07-14 20:35:23 +00:00
m2-bootstrap-all.sh Cleaned up plugin-version resolution. 2005-07-14 20:35:23 +00:00
plugin-inheritance-and-profiles-notes-jdcasey-20050526.txt adding my notes for implementing plugin inheritance and build profiles. delete if not needed. 2005-05-27 03:29:54 +00:00
pom.xml adding jdcasey and updating tz 2005-07-02 19:01:40 +00:00
upgrading-dependencies.apt some notes on changing dependencies 2004-10-23 13:28:06 +00:00

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

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 m2-bootstrap-all.bat (in Windows) or m2-bootstrap-all.sh (in Unix)

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>