Apache Maven core
Go to file
Brett Leslie Porter a53624b4b4 correct bug that caused certain snapshot files to never be updated
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@169397 13f79535-47bb-0310-9956-ffa450edef68
2005-05-10 02:52:37 +00:00
benchmark change the maven group ID 2005-03-23 06:52:55 +00:00
maven-1.x-integration use new name 2005-04-05 16:30:55 +00:00
maven-archetype update to latest maven-artifact 2005-05-09 02:13:33 +00:00
maven-archiver bug fixes for classpath generation 2005-04-23 03:28:14 +00:00
maven-artifact correct bug that caused certain snapshot files to never be updated 2005-05-10 02:52:37 +00:00
maven-artifact-ant need to construct the repository checkout first 2005-04-29 09:31:42 +00:00
maven-artifact-test decouple auth info from repository, allows removing settings from project code 2005-04-22 07:55:32 +00:00
maven-core o Cleaned up a couple of things in repoclean that broke with the last update. 2005-05-09 23:30:01 +00:00
maven-core-it PR: MNG-372 2005-05-09 11:38:38 +00:00
maven-core-it-plugin Renamed Plugin.java, AbstractPlugin.java, PluginExecutionRe(quest|sponse) PluginExecutionException to Mojo* 2005-04-29 00:12:09 +00:00
maven-core-it-support change the maven group ID 2005-03-23 06:52:55 +00:00
maven-core-it-verifier o Added '-e' switch, to allow error stacktraces without enabling DEBUG error level throughout. 2005-05-09 04:25:56 +00:00
maven-mboot2 Build maven-reporting-api before maven-core 2005-05-09 23:30:07 +00:00
maven-meeper Fixed email configuration, and added report link for the email content. 2005-04-26 01:35:17 +00:00
maven-model consolidate defaults injection 2005-05-04 17:34:52 +00:00
maven-monitor Added isXXXEnabled() methods to Log. 2005-05-06 01:00:37 +00:00
maven-plugin-api Renamed Plugin.java, AbstractPlugin.java, PluginExecutionRe(quest|sponse) PluginExecutionException to Mojo* 2005-04-29 00:12:09 +00:00
maven-plugin-descriptor o Cleaned up a couple of things in repoclean that broke with the last update. 2005-05-09 23:30:01 +00:00
maven-plugin-tools o Added duplicate check for mojo descriptor Parameters 2005-05-06 17:41:03 +00:00
maven-plugins o Fix html generation 2005-05-09 22:47:34 +00:00
maven-project o Cleaned up a couple of things in repoclean that broke with the last update. 2005-05-09 23:30:01 +00:00
maven-reporting o Fix html generation 2005-05-09 22:47:34 +00:00
maven-reporting-api use new name 2005-04-05 16:30:55 +00:00
maven-repository-tools change the maven group ID 2005-03-23 06:52:55 +00:00
maven-script Forgot to commit the marmalade changes for the descriptor cleanup. 2005-05-06 18:34:50 +00:00
maven-settings PR: MNG-145 2005-05-05 06:24:07 +00:00
maven-site add roadmap 2005-05-05 16:27:37 +00:00
sandbox Improve rendering. 2005-05-10 00:20:29 +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 add PATH info 2005-04-04 15:18:48 +00:00
ci.sh fix path to svn 2005-04-21 17:28:26 +00:00
m2-bootstrap-all.bat Little fix for run it tests. 2005-04-04 13:15:47 +00:00
m2-bootstrap-all.sh PR: MNG-372 2005-05-09 11:38:38 +00:00
pom.xml include reporting modules 2005-04-28 00:52:53 +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.

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=-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!