Apache Maven core
Go to file
Carlos Sanchez Gonzalez f65a24ac78 sync only com/sun
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@417885 13f79535-47bb-0310-9956-ffa450edef68
2006-06-28 22:02:20 +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
maven-artifact-manager add '*' as a valid mirrorOf setting, to easily force all repositories to one address 2006-06-26 17:41:35 +00:00
maven-artifact-test
maven-cli o Making the mvn script Solaris sh compatible. 2006-05-22 20:05:49 +00:00
maven-core don't show -e for failures, only errors when there was a causing exception 2006-06-28 06:07:56 +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
maven-error-diagnostics
maven-meeper sync only com/sun 2006-06-28 22:02:20 +00:00
maven-model merge r384693 from branch - fix compilation issue 2006-03-10 03:48:38 +00:00
maven-model-converter
maven-monitor o merge of the maven-embedder-refactor branch into the trunk 2006-04-07 15:57:09 +00:00
maven-plugin-api
maven-plugin-descriptor PR: MNG-2293 2006-06-09 14:30:57 +00:00
maven-plugin-parameter-documenter
maven-plugin-registry (Merged from 385635.) [MNG-2146] Added code to guard against NPE when maven.home and org.apache.maven.global-plugin-registry are both missing from the sysprops. 2006-03-13 19:51:44 +00:00
maven-plugin-tools PR: MNG-2293 2006-06-09 14:30:57 +00:00
maven-profile
maven-project fix formatting 2006-06-28 06:07:32 +00:00
maven-reporting Merge from rev.389262 2006-03-27 20:42:34 +00:00
maven-repository-metadata
maven-repository-tools
maven-script
maven-settings remove System.out 2006-06-18 13:00:57 +00:00
maven-tools MNG-1937, MNG-1665 2006-04-20 20:17:27 +00:00
src/assemble Merging from 2.0.x branch, revIds: 2006-04-05 17:43:35 +00:00
README.txt
bootstrap.bat
bootstrap.sh
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 move maven-archiver to shared 2006-06-13 15:27:55 +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>