Apache Maven core
Go to file
John Dennis Casey 9e512f8d03 posting an update that represents changes in the design for offline mode, back to being more similar to m1's concept of it.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163970 13f79535-47bb-0310-9956-ffa450edef68
2005-04-18 23:15:25 +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 split the plugin API and the plugin descriptor code 2005-04-13 05:11:49 +00:00
maven-archiver note desired change for manifestFile 2005-04-13 00:04:38 +00:00
maven-artifact resolve outstanding issues with scoping regarding tests. Algorithm to be documented in user's guide. 2005-04-15 07:31:40 +00:00
maven-artifact-ant build an assembly that includes dependencies 2005-04-18 07:09:16 +00:00
maven-artifact-test Initial revision 2005-04-11 07:25:32 +00:00
maven-core posting an update that represents changes in the design for offline mode, back to being more similar to m1's concept of it. 2005-04-18 23:15:25 +00:00
maven-core-it o Refactored the MavenSettings code into the settings.mdo/Settings class. 2005-04-18 21:50:55 +00:00
maven-core-it-plugin properly test basedir alignment 2005-04-15 05:29:44 +00:00
maven-core-it-support change the maven group ID 2005-03-23 06:52:55 +00:00
maven-core-it-verifier fix integration tests 2005-04-13 11:22:02 +00:00
maven-mboot2 Fix issue when JAVA_HOME contains spaces 2005-04-16 04:16:29 +00:00
maven-meeper Updated opensymphony info 2005-04-14 16:27:25 +00:00
maven-model documentation enhancements, and added transitive dependencies document 2005-04-15 11:08:16 +00:00
maven-monitor some POM enhancements 2005-04-08 07:50:53 +00:00
maven-plugin-api PR: MNG-225 2005-04-13 11:34:09 +00:00
maven-plugin-descriptor o Refactored the MavenSettings code into the settings.mdo/Settings class. 2005-04-18 21:50:55 +00:00
maven-plugin-tools utilise the container for populating all mojo configuration, including expressions 2005-04-15 04:52:31 +00:00
maven-plugins add ability to build a JAR with its dependencies unpacked inside. 2005-04-18 07:07:58 +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 convert #component expressions to <requirements/> 2005-04-14 03:27:35 +00:00
maven-settings o Refactored the MavenSettings code into the settings.mdo/Settings class. 2005-04-18 21:50:55 +00:00
maven-site fix incorrect table 2005-04-15 12:23:27 +00:00
sandbox Added the ability to generate an index file under .index.txt for the repository as we convert it. 2005-04-07 21:26:21 +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 build on updates as well as patches 2005-04-13 11:31:53 +00:00
m2-bootstrap-all.bat Little fix for run it tests. 2005-04-04 13:15:47 +00:00
m2-bootstrap-all.sh cygwin stuff 2005-04-11 13:07:32 +00:00
pom.xml Add my name 2005-04-17 12:35:15 +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!