Apache Maven core
Go to file
Vincent Massol c9a00782d8 Error while deploying when using scpexe protocol with non-default scp/ssh executables
PR: MNG-1900
Submitted By: Brett Porter


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@360120 13f79535-47bb-0310-9956-ffa450edef68
2005-12-30 17:14:54 +00:00
benchmark PR: MNG-596 2005-07-21 13:58:42 +00:00
bootstrap flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
examples/maven-clover-plugin-samples Set a small flush intervalso that the tests execute more rapidly and to ensure it's possible to override it. 2005-10-26 23:19:50 +00:00
integration-tests Bumping versions for maven deps up to 2.0. 2005-12-07 23:48:15 +00:00
maven-archiver flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-artifact flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-artifact-ant flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-artifact-manager Error while deploying when using scpexe protocol with non-default scp/ssh executables 2005-12-30 17:14:54 +00:00
maven-artifact-test flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-core Adding 2 new phases related to integration tests: 2005-12-29 18:19:31 +00:00
maven-core-it need snapshots 2005-12-10 02:35:18 +00:00
maven-core-it-verifier Use mvn command instead of deprecated m2 2005-12-01 07:48:50 +00:00
maven-embedder o push in some changes for simplifying the creation of repositories 2005-12-22 20:46:23 +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 script to sync from apache m2 repo 2005-12-28 10:47:42 +00:00
maven-model flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-model-converter flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-monitor flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-plugin-api flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-plugin-descriptor flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-plugin-parameter-documenter flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-plugin-registry flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-plugin-tools flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-profile flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-project flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-reporting flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-repository-metadata flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-repository-tools PR: MNG-596 2005-07-21 13:58:42 +00:00
maven-script flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-settings flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +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 minor adjustments to ci 2005-12-21 13:33:06 +00:00
pom.xml Updated p-u dep to 1.0.6-SNAPSHOT. 2005-12-13 17:33:21 +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>