Apache Maven core
Go to file
Emmanuel Venisse 9cf7d63d25 Fix settings file path for windows.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163708 13f79535-47bb-0310-9956-ffa450edef68
2005-03-29 19:53:27 +00:00
benchmark change the maven group ID 2005-03-23 06:52:55 +00:00
maven-1.x-integration change the maven group ID 2005-03-23 06:52:55 +00:00
maven-archetype change the maven group ID 2005-03-23 06:52:55 +00:00
maven-archiver change the maven group ID 2005-03-23 06:52:55 +00:00
maven-artifact change resolve() methods to not return Artifact - but instead modify the original. Artifact is immutable except for version so it is safe - but will it cost flexibility later. Currently, this makes it much simpler as less copying vigilance is required. 2005-03-29 16:41:13 +00:00
maven-core Fix settings file path for windows. 2005-03-29 19:53:27 +00:00
maven-core-it change the maven group ID 2005-03-23 06:52:55 +00:00
maven-core-it-plugin change the maven group ID 2005-03-23 06:52:55 +00:00
maven-core-it-support change the maven group ID 2005-03-23 06:52:55 +00:00
maven-core-it-verifier change the maven group ID 2005-03-23 06:52:55 +00:00
maven-mboot2 change the maven group ID 2005-03-23 06:52:55 +00:00
maven-meeper commit outstanding changes 2005-03-29 00:10:35 +00:00
maven-model change the maven group ID 2005-03-23 06:52:55 +00:00
maven-monitor change the maven group ID 2005-03-23 06:52:55 +00:00
maven-plugin forgot another (?) 2005-03-29 05:29:23 +00:00
maven-plugin-tools change the maven group ID 2005-03-23 06:52:55 +00:00
maven-plugins allow empty JARs 2005-03-29 06:02:57 +00:00
maven-reporting-api change the maven group ID 2005-03-23 06:52:55 +00:00
maven-repository-tools change the maven group ID 2005-03-23 06:52:55 +00:00
maven-script change the maven group ID 2005-03-23 06:52:55 +00:00
maven-settings change the maven group ID 2005-03-23 06:52:55 +00:00
sandbox o Added more filters on the excludes. 2005-03-23 06:58:47 +00:00
.cvsignore o Added plugin version management/enforcement through the POM's build section. 2005-03-10 21:36:58 +00:00
README.txt Added debug option to compiler configuration. 2005-01-09 22:38:43 +00:00
ci.sh wrong date format 2004-09-20 05:13:19 +00:00
m2-bootstrap-all.bat Added debug option to compiler configuration. 2005-01-09 22:38:43 +00:00
m2-bootstrap-all.sh Added debug option to compiler configuration. 2005-01-09 22:38:43 +00:00
pom.xml change the maven group ID 2005-03-23 06:52:55 +00:00
upgrading-dependencies.apt some notes on changing dependencies 2004-10-23 13:28:06 +00:00

README.txt

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

To bootstrap Maven you must have a ~/.m2/maven.properties file with the following
entry:

maven.repo.local = /path/to/your/local/repository

Set the environment variable M2_HOME pointing to the dir where you want Maven2 installed.

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=-Dmaven.online=false
e.g. to build maven with debug info, set MAVEN_OPTS=-Dmaven.compiler.debug=true

Then run m2-bootstrap-all.bat (in Windows) or m2-bootstrap-all.sh (in Unix)

NOTE: You must run these instructions from this directory!