Apache Maven core
Go to file
John Dennis Casey ed14ff454d Modifying the mojo generators to handle alias, and other missing elements where appropriate. Changed the resources mojos to be as trim as I can, and added @required to the field-level annotations (this might be a good thing to do for all plexus components, dunno if it's there already)...finally, trimmed up the annotation handling in the JavaMojoDescriptorExtractor to push as many annotation fields as possible into the endangered area, and started pulling as much info from the field, other companion annotations on the field, etc. as I can...I think the annotations are there, now. They need to be cleaned up after converting all the core plugins to use field-level annotations, then we're set.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@164990 13f79535-47bb-0310-9956-ffa450edef68
2005-04-27 15:11:28 +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 legacy repo in tests is friendlier to windows systems with path length restrictions 2005-04-21 04:46:22 +00:00
maven-archiver bug fixes for classpath generation 2005-04-23 03:28:14 +00:00
maven-artifact fix error reporting 2005-04-26 14:34:47 +00:00
maven-artifact-ant final package name changes 2005-04-27 01:37:25 +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 PR: MNG-167 2005-04-27 01:16:06 +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 fixes related to changing the path of parent poms, though the actual functionality is not implemented 2005-04-23 06:24:08 +00:00
maven-mboot2 make debug compiling the default 2005-04-26 04:31:47 +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 fixes related to changing the path of parent poms, though the actual functionality is not implemented 2005-04-23 06:24:08 +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 PR: MNG-167 2005-04-27 01:16:06 +00:00
maven-plugin-tools Modifying the mojo generators to handle alias, and other missing elements where appropriate. Changed the resources mojos to be as trim as I can, and added @required to the field-level annotations (this might be a good thing to do for all plexus components, dunno if it's there already)...finally, trimmed up the annotation handling in the JavaMojoDescriptorExtractor to push as many annotation fields as possible into the endangered area, and started pulling as much info from the field, other companion annotations on the field, etc. as I can...I think the annotations are there, now. They need to be cleaned up after converting all the core plugins to use field-level annotations, then we're set. 2005-04-27 15:11:28 +00:00
maven-plugins Modifying the mojo generators to handle alias, and other missing elements where appropriate. Changed the resources mojos to be as trim as I can, and added @required to the field-level annotations (this might be a good thing to do for all plexus components, dunno if it's there already)...finally, trimmed up the annotation handling in the JavaMojoDescriptorExtractor to push as many annotation fields as possible into the endangered area, and started pulling as much info from the field, other companion annotations on the field, etc. as I can...I think the annotations are there, now. They need to be cleaned up after converting all the core plugins to use field-level annotations, then we're set. 2005-04-27 15:11:28 +00:00
maven-project fix more references to the old package 2005-04-27 00:28:05 +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 add deprecated parameter feature 2005-04-20 16:49:01 +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 remove mention of m1 for now 2005-04-25 12:53:25 +00:00
sandbox Fixed email problem (misuse of API); fixed digest generation and handling; updated the plexus-container-default dependency version to 1.0-alpha-3-SNAPSHOT 2005-04-27 04:00: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 cygwin stuff 2005-04-11 13:07:32 +00:00
pom.xml update SCM settings 2005-04-22 00:57:08 +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!