Apache Maven core
Go to file
Emmanuel Venisse 8ed5bfa817 Remove duplicated release plugin declaration
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@379514 13f79535-47bb-0310-9956-ffa450edef68
2006-02-21 16:21:36 +00:00
bootstrap flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
integration-tests [MNG-1927] This adds the test mojos required to fix ${pom.build.*} expansion to full paths, the problem was the 2006-01-11 19:36:37 +00:00
maven-archiver flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-artifact [MNG-2083] Added new exception, MultipleArtifactsNotFoundException, to account for cases where multiple artifacts are missing during transitive resolution. This will handle formatting, including downloadUrl and install instructions, for each missing artifact. 2006-02-21 06:23:57 +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 [MNG-2083] Added new exception, MultipleArtifactsNotFoundException, to account for cases where multiple artifacts are missing during transitive resolution. This will handle formatting, including downloadUrl and install instructions, for each missing artifact. 2006-02-21 06:23:57 +00:00
maven-artifact-test Fix problem where settings.xml doesn't contain localRepo 2006-02-11 03:28:20 +00:00
maven-core [MNG-2096] allow <configuration> with <execution> in a lifecycle overlay, like a plugin allows 2006-02-21 15:36:04 +00:00
maven-core-it [MNG-1898] fix line 2006-02-21 11:33:22 +00:00
maven-core-it-verifier Use mvn command instead of deprecated m2 2005-12-01 07:48:50 +00:00
maven-embedder Load profiles from settings 2006-02-21 15:27:57 +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 support for javadocs 2006-02-16 20:29:55 +00:00
maven-model [MNG-2084] correct doc 2006-02-21 14:03:47 +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 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 [MNG-2096] allow <configuration> with <execution> in a lifecycle overlay, like a plugin allows 2006-02-21 15:36:04 +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 [MNG-2087] NPE in PluginXdocGenerator 2006-02-21 02:11:43 +00:00
maven-profile flip trunk to 2.1-SNAPSHOT 2005-12-12 18:22:06 +00:00
maven-project fix compilation error 2006-02-21 15:51:55 +00:00
maven-reporting [MPIR-21] upgrade commons-validator (should consider moving this out of the reporting implementation in 2.1) 2006-02-21 04:49:32 +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 merge from rev.379395 2006-02-21 10:17:56 +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 Remove duplicated release plugin declaration 2006-02-21 16:21:36 +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>