Apache Maven core
Go to file
Trygve Laugstol 2712bc53ba o Adding the Apache announce list.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@290499 13f79535-47bb-0310-9956-ffa450edef68
2005-09-20 18:05:03 +00:00
benchmark PR: MNG-596 2005-07-21 13:58:42 +00:00
examples some dependency clean up 2005-09-14 04:08:29 +00:00
maven-1.x-integration match interface and impl 2005-09-16 07:07:51 +00:00
maven-archetype [maven-release-plugin] prepare for next development iteration 2005-09-16 15:01:52 +00:00
maven-archiver [maven-release-plugin] prepare for next development iteration 2005-09-16 02:57:16 +00:00
maven-artifact [maven-release-plugin] prepare for next development iteration 2005-09-16 02:57:16 +00:00
maven-artifact-ant add some notes on prerequisites for tests 2005-09-16 13:42:55 +00:00
maven-artifact-manager don't fail when legacy metadata can't be found due to an error with the repository 2005-09-19 07:50:33 +00:00
maven-artifact-test [maven-release-plugin] prepare for next development iteration 2005-09-16 02:57:16 +00:00
maven-core Fixed MNG-908: set the contextClassLoader to the classrealm of the 2005-09-19 01:29:18 +00:00
maven-core-it make usable on cygwin 2005-09-20 04:10:38 +00:00
maven-core-it-plugin fix deps 2005-09-16 18:52:06 +00:00
maven-core-it-support PR: MNG-598 2005-07-26 09:04:32 +00:00
maven-core-it-verifier use correct path in the verifier for artifact metadata, allow commas in the list of tests to run 2005-09-11 07:25:33 +00:00
maven-mboot2 fix sclusion parsing 2005-09-16 07:17:36 +00:00
maven-meeper Use new repodir 2005-08-31 22:54:08 +00:00
maven-model arrr! thievin' release plugin! 2005-09-19 04:18:33 +00:00
maven-monitor [maven-release-plugin] prepare for next development iteration 2005-09-16 02:57:16 +00:00
maven-plugin-api [maven-release-plugin] prepare for next development iteration 2005-09-16 02:57:16 +00:00
maven-plugin-descriptor Fixed MNG-908: set the contextClassLoader to the classrealm of the 2005-09-19 01:29:18 +00:00
maven-plugin-registry [maven-release-plugin] prepare for next development iteration 2005-09-16 02:57:16 +00:00
maven-plugin-tools merge changes from tag, up to 289396 2005-09-16 06:47:46 +00:00
maven-plugins clean up site plugin, optimize descriptor creation 2005-09-20 09:28:25 +00:00
maven-profile [maven-release-plugin] prepare for next development iteration 2005-09-16 02:57:16 +00:00
maven-project Resolving: MNG-878, MNG-921 2005-09-20 02:59:44 +00:00
maven-reporting [maven-release-plugin] prepare for next development iteration 2005-09-16 02:57:16 +00:00
maven-repository-metadata [maven-release-plugin] prepare for next development iteration 2005-09-16 02:57:16 +00:00
maven-repository-tools PR: MNG-596 2005-07-21 13:58:42 +00:00
maven-script [maven-release-plugin] prepare for next development iteration 2005-09-16 02:57:16 +00:00
maven-settings [maven-release-plugin] prepare for next development iteration 2005-09-16 02:57:16 +00:00
maven-site Fixing MNG-931: "In site.html, extra images are said to be available via 2005-09-20 12:13:06 +00:00
sandbox don't zero out files that are the same 2005-09-20 07:07:23 +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 o Adding the Apache announce list. 2005-09-20 18:05:03 +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>