Apache Maven core
Go to file
John Dennis Casey 80880d071e o Fixed a configuration issue for the DefaultRepositoryLayout in components.xml...it needed a requirement on the ArtifactHandlerManager.
o Fixed a formatting issue for the layout in DefaultRepositoryLayout relating to groupId's.
o Revamped the repoclean tool to use an Artifact-centric approach to converting, cleaning, and reporting on repositories.
o Added the ability for repoclean to report on the health of an existing v3 or v4 repository, using a DefaultArtifactDiscoverer (Default* being the prefix given to the new repo layout going forward) and a V4PomRewriter implementation.
o Tested repoclean by converting my local m1 repository to a m2 repository.


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163669 13f79535-47bb-0310-9956-ffa450edef68
2005-03-23 04:53:30 +00:00
benchmark flip pom format 2005-03-10 01:35:25 +00:00
maven-1.x-integration flip pom format 2005-03-10 01:35:25 +00:00
maven-archetype o Created non-abstract base class for DefaultArtifactFactory to extend, called ArtifactConstructionSupport, which provides centralized means for constructing artifacts consistently without all the maven-core specific methods. These maven-core specifics not delegate to the generic methods provided in this new class. 2005-03-18 22:02:09 +00:00
maven-archiver convert archive mojos to new execute(). More work is required to reuse the common fields. 2005-03-22 13:25:58 +00:00
maven-artifact o Fixed a configuration issue for the DefaultRepositoryLayout in components.xml...it needed a requirement on the ArtifactHandlerManager. 2005-03-23 04:53:30 +00:00
maven-core reformat 2005-03-23 01:16:49 +00:00
maven-core-it revert <includes> and <excludes> in MDO to old format 2005-03-22 14:26:28 +00:00
maven-core-it-plugin workaround what will be an ongoing problem with the plugin expressions at this point 2005-03-22 07:31:29 +00:00
maven-core-it-support flip pom format 2005-03-10 01:35:25 +00:00
maven-core-it-verifier o Changed maven-user-model/UserModel/UserModelBuilder to maven-settings/MavenSettings/MavenSettingsBuilder. 2005-03-16 06:29:35 +00:00
maven-mboot2 remove pom plugin 2005-03-22 13:52:24 +00:00
maven-meeper flip pom format 2005-03-10 01:35:25 +00:00
maven-model revert <includes> and <excludes> in MDO to old format 2005-03-22 14:26:28 +00:00
maven-monitor o POM cleanup. 2005-03-13 23:44:33 +00:00
maven-plugin fix typo 2005-03-22 12:29:03 +00:00
maven-plugin-tools switch to per-lookup as a first step 2005-03-21 01:17:15 +00:00
maven-plugins revert <includes> and <excludes> in MDO to old format 2005-03-22 14:26:28 +00:00
maven-reporting-api o POM cleanup. 2005-03-12 20:34:23 +00:00
maven-repository-tools Renamed artifactId 2005-03-17 14:56:07 +00:00
maven-script remove context from request 2005-03-22 06:51:59 +00:00
maven-settings o Adding modello goals. 2005-03-17 01:34:24 +00:00
sandbox o Fixed a configuration issue for the DefaultRepositoryLayout in components.xml...it needed a requirement on the ArtifactHandlerManager. 2005-03-23 04:53:30 +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 correct type 2005-03-18 11:43:58 +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!