Apache Maven core
Go to file
John Dennis Casey 34f9e44721 Commented out use of cached model in MavenMetadataSource, as this is causing problems with projects that depend on other projects which use managed dependencies.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163847 13f79535-47bb-0310-9956-ffa450edef68
2005-04-07 21:52:17 +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 o Adding archetype for marmalade-mojo creation. this hasn't been thoroughly tested yet, because of a bug in model caching within the DefaultMavenProjectBuilder 2005-04-07 21:25:01 +00:00
maven-archiver use new name 2005-04-05 16:30:55 +00:00
maven-artifact snapshotPolicy must not be null 2005-04-07 14:59:26 +00:00
maven-core Commented out use of cached model in MavenMetadataSource, as this is causing problems with projects that depend on other projects which use managed dependencies. 2005-04-07 21:52:17 +00:00
maven-core-it fix bad quoting introduced 2005-04-05 09:33:12 +00:00
maven-core-it-plugin fix group id of parent pom 2005-04-05 16:44:29 +00:00
maven-core-it-support change the maven group ID 2005-03-23 06:52:55 +00:00
maven-core-it-verifier work without M2_HOME 2005-04-05 06:48:46 +00:00
maven-mboot2 back to repo1.maven.org, which is now at ibiblio 2005-04-07 04:59:12 +00:00
maven-meeper Adding summary of changes for repo sync refactor. 2005-04-07 04:30:37 +00:00
maven-model o Changed the repository to test.maven.codehaus.org for testing of the new repository and layout. 2005-04-06 01:28:29 +00:00
maven-monitor use new name 2005-04-05 16:30:55 +00:00
maven-plugin use new name 2005-04-05 16:30:55 +00:00
maven-plugin-tools updated the version of marmalade to 1.0-alpha-2 2005-04-07 21:25:41 +00:00
maven-plugins PR: MNG-258 2005-04-07 02:43:56 +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 changed the marmalade dependency to reference the latest slipstream 1.0-alpha-2 release of marmalade that excludes xpp3, using plexus-utils instead. 2005-04-06 15:53:32 +00:00
maven-settings use new name 2005-04-05 16:30:55 +00:00
maven-site update build 2005-04-07 17:28:09 +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 wrong date format 2004-09-20 05:13:19 +00:00
m2-bootstrap-all.bat Little fix for run it tests. 2005-04-04 13:15:47 +00:00
m2-bootstrap-all.sh update poms for releases 2005-04-01 16:03:43 +00:00
pom.xml add missing modules 2005-04-06 03:37:29 +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!