Apache Maven core
Go to file
Jason van Zyl bdf5e876f6 o fixes for various child POMs, getting the reactor build to work
o next is removing all the duplicate ids which resulted from us never using Maven itself to run the ITs
  - it all needs to run in the reactor because it's very convenient to run the reactor to see if everything is ok, allows all
    the tests to run together and allows you to create the IDE project files for just the test projects.



git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@466753 13f79535-47bb-0310-9956-ffa450edef68
2006-10-22 16:31:59 +00:00
integration-tests Update parent pom to 2-SNAPSHOT to use the proper scm urls and other dependencies. 2006-08-10 13:03:55 +00:00
maven-artifact Add javadocs 2006-07-28 16:21:35 +00:00
maven-artifact-ant merge r446623 from maven-2.0.x - fix line endings 2006-09-15 15:04:47 +00:00
maven-artifact-manager add test scope to easymock (scope in dependencyManagement doesn't work) 2006-09-05 07:39:44 +00:00
maven-artifact-test POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-cli o dan's fix to the main method 2006-10-11 06:22:59 +00:00
maven-core o necessary goodness to allow Ant-based plugins to unpack their resources which can be executed 2006-10-11 06:37:56 +00:00
maven-core-integration-tests o fixes for various child POMs, getting the reactor build to work 2006-10-22 16:31:59 +00:00
maven-core-it o adding IT it0002 2006-10-19 20:36:28 +00:00
maven-embedder MNG-2560 patch applied to make the bootstrap easier 2006-10-05 03:10:27 +00:00
maven-embedder-it POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-error-diagnostics POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-model MAVEN-1755 : New maven-model using dom4j as reader. 2006-10-09 16:08:46 +00:00
maven-monitor POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-plugin-api MNG-2461: Write JavaDoc documentation 2006-10-21 15:06:42 +00:00
maven-plugin-descriptor add @since for goals 2006-10-21 06:06:33 +00:00
maven-plugin-parameter-documenter Consolidating modello plugin configuration into parent-pom within pluginManagement. 2006-07-12 16:31:25 +00:00
maven-plugin-registry Fix modello generation 2006-07-07 11:14:32 +00:00
maven-profile POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-project PR: MNG-2603 2006-10-14 12:50:36 +00:00
maven-reporting move plugin tools and reporting implementation to shared 2006-10-21 02:16:02 +00:00
maven-repository-metadata Consolidating modello plugin configuration into parent-pom within pluginManagement. 2006-07-12 16:31:25 +00:00
maven-repository-tools POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-script Removed catch of IOException - not thrown anymode by UnArchiver 2006-10-12 15:42:40 +00:00
maven-settings Fix nonProxyHosts delimiter 2006-07-27 21:58:57 +00:00
maven-tools Removed checkstyle license, configured in maven parent 2006-07-24 16:11:03 +00:00
src/assemble Merging from 2.0.x branch, revIds: 2006-04-05 17:43:35 +00:00
README.txt MNG-2560 patch applied to make the bootstrap easier 2006-10-05 03:10:27 +00:00
build.xml move plugin tools and reporting implementation to shared 2006-10-21 02:16:02 +00:00
doap_Maven.rdf checking in generate DOAP 2006-07-18 15:21:23 +00:00
mavenexecute.pl adding warning 2006-10-19 21:22:35 +00:00
pom.xml move plugin tools and reporting implementation to shared 2006-10-21 02:16:02 +00:00

README.txt

-------------------------------------------------------------------------------
Bootstrapping Maven
-------------------------------------------------------------------------------

Set the environment variable M2_HOME pointing to the dir where you want Maven2
installed... with two key restrictions.

1) presently, the directory {M2_HOME}/bin must be in your path:
set PATH=%PATH%;%M2_HOME%\bin
or
export PATH=$PATH:$M2_HOME/bin

2) The last part of the M2_HOME path MUST be of the form maven-$version, eg:
/usr/local/maven-2.1-SNAPSHOT

You can set the parameters passed to the Java VM when running Maven2 bootstrap,
setting the environment variable MAVEN_OPTS, 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>