Apache Maven core
Go to file
John Dennis Casey 26ec2d757b Clean-ups. Reporters only write on error/warn...since info no longer exists, and file opening is lazy now.
Also, cleaner now checks to make sure the target file is missing and/or out of date before processing the source file. This should allow us to avoid reprocessing the whole source repo every time.


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163774 13f79535-47bb-0310-9956-ffa450edef68
2005-04-05 02:47:43 +00:00
benchmark change the maven group ID 2005-03-23 06:52:55 +00:00
maven-1.x-integration change the maven group ID 2005-03-23 06:52:55 +00:00
maven-archetype update poms for releases 2005-04-01 16:03:43 +00:00
maven-archiver update poms for releases 2005-04-01 16:03:43 +00:00
maven-artifact use a local snapshot if its file timestamp is newer than the remote timestamp inside the version file. This opens us back up to clock skew again, but should be preferential to local snapshots and less confusing 2005-04-05 01:58:33 +00:00
maven-core o Simplified the ResourcesMojo to eliminate the need for a ResourceEntry class, which is easily replaced by usage of a TreeMap (avoid the NoClassDefFoundError from before SEE MNG-243) 2005-04-04 21:32:53 +00:00
maven-core-it clean up integration tests, make them repository independent 2005-04-04 06:15:04 +00:00
maven-core-it-plugin change the maven group ID 2005-03-23 06:52:55 +00:00
maven-core-it-support change the maven group ID 2005-03-23 06:52:55 +00:00
maven-core-it-verifier make m2 use the local repository in the new layout 2005-04-04 06:47:21 +00:00
maven-mboot2 o Simplified the ResourcesMojo to eliminate the need for a ResourceEntry class, which is easily replaced by usage of a TreeMap (avoid the NoClassDefFoundError from before SEE MNG-243) 2005-04-04 21:32:53 +00:00
maven-meeper commit outstanding changes 2005-03-29 00:10:35 +00:00
maven-model implement snapshot policies: default is to only check once a day (after crossing midnight), or if --update-snapshots (-U) is specified on the command line 2005-03-30 03:30:08 +00:00
maven-monitor change the maven group ID 2005-03-23 06:52:55 +00:00
maven-plugin transitive deps in mboot. Will now proceed to trim up the POMs. Still need to trim ~/maven2/lib also. 2005-04-04 14:35:06 +00:00
maven-plugin-tools transitive deps in mboot. Will now proceed to trim up the POMs. Still need to trim ~/maven2/lib also. 2005-04-04 14:35:06 +00:00
maven-plugins o Simplified the ResourcesMojo to eliminate the need for a ResourceEntry class, which is easily replaced by usage of a TreeMap (avoid the NoClassDefFoundError from before SEE MNG-243) 2005-04-04 21:32:53 +00:00
maven-reporting-api change the maven group ID 2005-03-23 06:52:55 +00:00
maven-repository-tools change the maven group ID 2005-03-23 06:52:55 +00:00
maven-script transitive deps in mboot. Will now proceed to trim up the POMs. Still need to trim ~/maven2/lib also. 2005-04-04 14:35:06 +00:00
maven-settings transitive deps in mboot. Will now proceed to trim up the POMs. Still need to trim ~/maven2/lib also. 2005-04-04 14:35:06 +00:00
sandbox Clean-ups. Reporters only write on error/warn...since info no longer exists, and file opening is lazy now. 2005-04-05 02:47:43 +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 update poms for releases 2005-04-01 16:03:43 +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!