Apache Maven core
Go to file
John Dennis Casey 33e6497989 Adding blank outputFileNameMapping entry to the dependencySet to avoid unpacking into ${artifactId} subdirectories, and binding the assembly:single goal to the package phase to automatically make/attach the -dep artifact.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@477314 13f79535-47bb-0310-9956-ffa450edef68
2006-11-20 20:16:08 +00:00
maven-artifact Add javadocs 2006-07-28 16:21:35 +00:00
maven-artifact-ant merge r446623 from maven-2.0.x - fix line endings 2006-09-15 15:04:47 +00:00
maven-artifact-manager [MNG-1908] recommitting fix for SNAPSHOT handling. As far as I can tell, this doesn't incur the performance penalty it used to. 2006-10-30 01:06:00 +00:00
maven-artifact-test POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-cli o Merged from 2.0.x branch revision r472890, MNG-2413 2006-11-09 13:34:14 +00:00
maven-core PR: MNG-1508; add process-test-classes phase. Merged from rev 470427 @ 2.0.x branch 2006-11-02 17:26:10 +00:00
maven-core-it o adding IT it0002 2006-10-19 20:36:28 +00:00
maven-embedder Adding blank outputFileNameMapping entry to the dependencySet to avoid unpacking into ${artifactId} subdirectories, and binding the assembly:single goal to the package phase to automatically make/attach the -dep artifact. 2006-11-20 20:16:08 +00:00
maven-embedder-it Fixing ID keyword... 2006-11-02 15:49:47 +00:00
maven-error-diagnostics POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-model o documentation improvement 2006-11-04 14:13:57 +00:00
maven-monitor POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-plugin-api MNG-2461: Write JavaDoc documentation 2006-10-21 15:06:42 +00:00
maven-plugin-descriptor add @since for goals 2006-10-21 06:06:33 +00:00
maven-plugin-parameter-documenter Consolidating modello plugin configuration into parent-pom within pluginManagement. 2006-07-12 16:31:25 +00:00
maven-plugin-registry Fix modello generation 2006-07-07 11:14:32 +00:00
maven-profile POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-project fix a crappy error message. It said that a POM referenced itself, when the problem was that the expression referenced itself. 2006-11-15 06:08:40 +00:00
maven-reporting move plugin tools and reporting implementation to shared 2006-10-21 02:16:02 +00:00
maven-repository-metadata Consolidating modello plugin configuration into parent-pom within pluginManagement. 2006-07-12 16:31:25 +00:00
maven-repository-tools POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-script Removed catch of IOException - not thrown anymode by UnArchiver 2006-10-12 15:42:40 +00:00
maven-settings o Make sure that descriptions end with a period, if they have a defaultValue. This way it will look nice when we upgrade to a newer version of Modello. 2006-11-13 23:22:15 +00:00
maven-tools Removed checkstyle license, configured in maven parent 2006-07-24 16:11:03 +00:00
src/assemble Merging from 2.0.x branch, revIds: 2006-04-05 17:43:35 +00:00
README.txt MNG-2560 patch applied to make the bootstrap easier 2006-10-05 03:10:27 +00:00
build.xml o Added ability to pickup localRepository location from ~/.m2/settings.xml 2006-10-31 19:38:37 +00:00
doap_Maven.rdf [MNG-2117] Update doap file descriptor 2006-11-02 23:43:22 +00:00
pom.xml fix according to developer conventions to minimise configuration. 2006-11-03 08:06:02 +00:00

README.txt

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

Set the environment variable M2_HOME pointing to the dir where you want Maven2
installed... with two key restrictions.

1) presently, the directory {M2_HOME}/bin must be in your path:
set PATH=%PATH%;%M2_HOME%\bin
or
export PATH=$PATH:$M2_HOME/bin

2) The last part of the M2_HOME path MUST be of the form maven-$version, eg:
/usr/local/maven-2.1-SNAPSHOT

You can set the parameters passed to the Java VM when running Maven2 bootstrap,
setting the environment variable MAVEN_OPTS, e.g. to run in offline mode,
set MAVEN_OPTS=-o

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

NOTE: You must run these instructions from this directory!

If you are behind a firewall, you will need to let the bootstrap process know.
To do this, create a file at ~/.m2/settings.xml and paste in the XML below,
substituting your settings for those provided. You can safely skip the
username, password and nonProxyHost elements if they are not relevant to you.

<settings>
  <proxies>
    <proxy>
      <active>true</active>
      <protocol>http</protocol>
      <host>proxy.somewhere.com</host>
      <port>8080</port>
      <username>proxyuser</username>
      <password>somepassword</password>
      <nonProxyHosts>www.google.com|*.somewhere.com</nonProxyHosts>
    </proxy>
  </proxies>
</settings>