Apache Maven core
Go to file
John Dennis Casey 30b1434723 Resolving: MNG-421
o External profiles (from settings.xml, profiles.xml) are now available before the main MavenProject is constructed, which allows repositories defined in external profiles to be used to resolve project parents and dependencies.

NOTE: I need to double-check whether the profile-defined repos are actually used to resolve the parent project(s)...there may be another commit following on the heels of this one.



git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@189667 13f79535-47bb-0310-9956-ffa450edef68
2005-06-08 23:34:35 +00:00
benchmark remove old cvs ignore files 2005-06-07 05:24:51 +00:00
examples/maven-hello-plugin update mojo 2005-06-03 00:47:00 +00:00
maven-1.x-integration remove old cvs ignore files 2005-06-07 05:24:51 +00:00
maven-archetype remove old cvs ignore files 2005-06-07 05:24:51 +00:00
maven-archiver remove old cvs ignore files 2005-06-07 05:24:51 +00:00
maven-artifact o Adding handler for Plexus applications. 2005-06-07 19:14:34 +00:00
maven-artifact-ant PR: MNG-457 2005-06-08 05:54:25 +00:00
maven-artifact-test update for profiles 2005-06-06 06:36:57 +00:00
maven-core Resolving: MNG-421 2005-06-08 23:34:35 +00:00
maven-core-it Adding profiles.xml and settings.xml support for profiles, along with integration tests for each. 2005-06-08 03:27:43 +00:00
maven-core-it-plugin remove old cvs ignore files 2005-06-07 05:24:51 +00:00
maven-core-it-support remove old cvs ignore files 2005-06-07 05:24:51 +00:00
maven-core-it-verifier remove old cvs ignore files 2005-06-07 05:24:51 +00:00
maven-mboot2 remove old cvs ignore files 2005-06-07 05:24:51 +00:00
maven-meeper remove old cvs ignore files 2005-06-07 05:24:51 +00:00
maven-model Resolving: MNG-421 2005-06-08 23:34:35 +00:00
maven-monitor remove old cvs ignore files 2005-06-07 05:24:51 +00:00
maven-plugin-api implement some inspection settings 2005-05-23 03:57:28 +00:00
maven-plugin-descriptor PR: MNG-423 2005-06-07 01:13:52 +00:00
maven-plugin-tools remove old cvs ignore files 2005-06-07 05:24:51 +00:00
maven-plugins o Started maven-projecthelp-plugin to help with build analysis (this helped me to visualize profile stuff) 2005-06-08 17:54:11 +00:00
maven-profile Adding profiles.xml and settings.xml support for profiles, along with integration tests for each. 2005-06-08 03:27:43 +00:00
maven-project Resolving: MNG-421 2005-06-08 23:34:35 +00:00
maven-reporting o Internationalize site plugin generation. 2005-06-05 23:10:11 +00:00
maven-reports o Internationalize site plugin generation. 2005-06-05 23:10:11 +00:00
maven-repository-tools remove old cvs ignore files 2005-06-07 05:24:51 +00:00
maven-script remove old cvs ignore files 2005-06-07 05:24:51 +00:00
maven-settings ability to lookup mirror by repository id that it is a mirror of 2005-06-08 03:37:31 +00:00
maven-site add link to confluence docs 2005-06-07 13:34:50 +00:00
sandbox JIRA issues fixed: 2005-06-08 20:19:41 +00:00
README.txt clean up instructions 2005-05-12 10:21:57 +00:00
ci.sh change message when it is skipped due to already running 2005-06-07 05:18:41 +00:00
m2-bootstrap-all.bat more parameter consistency. MAVEN_OPTS goes to java, $@ goes to the args. 2005-06-07 01:32:11 +00:00
m2-bootstrap-all.sh more parameter consistency. MAVEN_OPTS goes to java, $@ goes to the args. 2005-06-07 01:32:11 +00:00
plugin-inheritance-and-profiles-notes-jdcasey-20050526.txt adding my notes for implementing plugin inheritance and build profiles. delete if not needed. 2005-05-27 03:29:54 +00:00
pom.xml Add more modules 2005-05-19 17:05:48 +00:00
upgrading-dependencies.apt some notes on changing dependencies 2004-10-23 13:28:06 +00:00

README.txt

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

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

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

NOTE: You must run these instructions from this directory!