Apache Maven core
Go to file
Carlos Sanchez Gonzalez ba6d62aeb2 Set svn properties
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@419870 13f79535-47bb-0310-9956-ffa450edef68
2006-07-07 11:17:34 +00:00
bootstrap bootstrap fixes 2006-05-29 07:45:07 +00:00
integration-tests fix parent 2006-06-13 16:16:30 +00:00
maven-artifact Renamed MockArtifactHandler to follow naming conventions 2006-06-20 23:08:31 +00:00
maven-artifact-ant merge from branch maven-2.0.x, up to rev 365776 2006-01-04 01:14:17 +00:00
maven-artifact-manager Checkstyle fixes 2006-07-01 14:27:10 +00:00
maven-artifact-test Fix problem where settings.xml doesn't contain localRepo 2006-02-11 03:28:20 +00:00
maven-cli o Making the mvn script Solaris sh compatible. 2006-05-22 20:05:49 +00:00
maven-core when creating local repository, don't force updating snapshots from all remote repositories. 2006-07-02 18:00:48 +00:00
maven-core-it add plugin snapshot repository to find the plugin when the test is enabled 2006-06-28 15:20:57 +00:00
maven-core-it-verifier avoid string out of bounds exception 2006-06-13 12:25:32 +00:00
maven-embedder remove unused resources 2006-06-28 16:00:02 +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-error-diagnostics flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-meeper add a note 2006-07-03 05:47:23 +00:00
maven-model merge r384693 from branch - fix compilation issue 2006-03-10 03:48:38 +00:00
maven-model-converter Make site deploy to maven.apache.org/ref/version with jxr and javadocs reports 2006-02-01 02:39:10 +00:00
maven-monitor o merge of the maven-embedder-refactor branch into the trunk 2006-04-07 15:57:09 +00:00
maven-plugin-api flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-plugin-descriptor [MNG-2406] add @since tag to plugin descriptor and report 2006-06-29 03:59:55 +00:00
maven-plugin-parameter-documenter (merged from branch revId: 379662.) 2006-02-22 03:13:17 +00:00
maven-plugin-registry Fix modello generation 2006-07-07 11:14:32 +00:00
maven-plugin-tools [MPLUGIN-7] clean up generation 2006-07-05 04:37:22 +00:00
maven-profile Set svn properties 2006-07-07 11:17:34 +00:00
maven-project PR: MNG-1245 2006-07-06 17:28:00 +00:00
maven-reporting Merge from rev.389262 2006-03-27 20:42:34 +00:00
maven-repository-metadata (merged from branch revId: 379662.) 2006-02-22 03:13:17 +00:00
maven-repository-tools PR: MNG-596 2005-07-21 13:58:42 +00:00
maven-script PR: MNG-2088 2006-07-06 19:16:27 +00:00
maven-settings remove System.out 2006-06-18 13:00:57 +00:00
maven-tools when creating local repository, don't force updating snapshots from all remote repositories. 2006-07-02 18:00:48 +00:00
src/assemble Merging from 2.0.x branch, revIds: 2006-04-05 17:43:35 +00:00
README.txt switch bootstrap 2005-11-16 13:31:15 +00:00
bootstrap.bat Fix bootstrap under windows. 2005-11-17 10:27:31 +00:00
bootstrap.sh o we're not going to build the plugins so make sure that someone who has checked out the "maven" 2005-12-23 05:23:17 +00:00
ci.sh it's a duhrectory! 2006-04-08 07:47:04 +00:00
doap_Maven.rdf Re-add previous version 2006-03-29 14:34:19 +00:00
pom.xml Upgrade versions of parent and wagon api 2006-07-01 15:03:25 +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 bootstrap.bat (in Windows) or bootstrap.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>