Apache Maven core
Go to file
Brett Leslie Porter 78481235b9 ignore
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@293571 13f79535-47bb-0310-9956-ffa450edef68
2005-10-04 08:58:36 +00:00
benchmark PR: MNG-596 2005-07-21 13:58:42 +00:00
examples/maven-clover-plugin-samples move marmalade code out of main bootstrap, into sandbox. 2005-10-03 14:50:34 +00:00
maven-1.x-integration upgrade to plexus 1.0-alpha-7 container, switching to new group ID 2005-10-03 00:54:01 +00:00
maven-archetype PR: MNG-1016 2005-09-29 14:32:35 +00:00
maven-archiver [MNG-1071] lookup JarArchiver instead of calling contructor so output will be use with the correct logger. 2005-10-03 09:48:32 +00:00
maven-artifact PR: MNG-922 2005-10-04 08:43:36 +00:00
maven-artifact-ant update version 2005-10-04 04:29:40 +00:00
maven-artifact-manager PR: MNG-922 2005-10-04 08:43:36 +00:00
maven-artifact-test upgrade to plexus 1.0-alpha-7 container, switching to new group ID 2005-10-03 00:54:01 +00:00
maven-core add copyright 2005-10-04 08:17:06 +00:00
maven-core-it PR: MNG-956 2005-10-04 07:15:36 +00:00
maven-core-it-plugin stop using deprecated syntax 2005-10-01 07:39:56 +00:00
maven-core-it-support fix snapshot repo 2005-09-26 13:31:30 +00:00
maven-core-it-verifier PR: MNG-932 2005-10-03 03:53:48 +00:00
maven-embedder o A change that eliminates the use of System.properties from the core in an 2005-10-04 03:31:35 +00:00
maven-embedder-it git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@291718 13f79535-47bb-0310-9956-ffa450edef68 2005-09-26 19:23:47 +00:00
maven-mboot2 Fixing error messages related to invalid plugin configuration, similar to the instantiation exception for ArtifactRepository when there is no deployment repository... 2005-10-03 18:06:00 +00:00
maven-meeper Use new repodir 2005-08-31 22:54:08 +00:00
maven-model PR: MNG-922 2005-10-04 08:43:36 +00:00
maven-monitor [maven-release-plugin] prepare for next development iteration 2005-09-26 15:30:36 +00:00
maven-plugin-api can throw failure too 2005-10-03 04:04:07 +00:00
maven-plugin-descriptor PR: MNG-956 2005-10-04 07:15:36 +00:00
maven-plugin-parameter-documenter Resolving: MNG-449, MNG-832 2005-10-04 04:19:40 +00:00
maven-plugin-registry Resolving: MNG-934, MNG-669 2005-10-04 01:07:36 +00:00
maven-plugin-tools remove marmalade references 2005-10-04 00:51:29 +00:00
maven-plugins add copyright 2005-10-04 08:25:33 +00:00
maven-profile Resolving: MNG-934, MNG-669 2005-10-04 01:07:36 +00:00
maven-project PR: MNG-922 2005-10-04 08:43:36 +00:00
maven-reporting PR: MNG-706 2005-09-26 16:41:53 +00:00
maven-repository-metadata PR: MNG-230 2005-09-29 07:36:55 +00:00
maven-repository-tools PR: MNG-596 2005-07-21 13:58:42 +00:00
maven-script remove marmalade references 2005-10-04 00:51:29 +00:00
maven-settings Resolving: MNG-449, MNG-832 2005-10-04 04:19:40 +00:00
maven-site git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@293483 13f79535-47bb-0310-9956-ffa450edef68 2005-10-04 01:37:29 +00:00
sandbox move marmalade code out of main bootstrap, into sandbox. 2005-10-03 14:50:34 +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 only mail about skipped run on checkout attempt to allow overlap 2005-07-28 01:17:38 +00:00
m2-bootstrap-all.bat fix in case of a non-existant local repo 2005-07-26 15:11:21 +00:00
m2-bootstrap-all.sh fix in case of a non-existant local repo 2005-07-26 15:11:21 +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 upgrade to plexus 1.0-alpha-7 container, switching to new group ID 2005-10-03 00:54:01 +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>