Apache Maven core
Go to file
John Dennis Casey 75c7380801 [MNG-2302] Added code to nullify parent's descriptor location in cases where the parent MavenProject instance was loaded from the repository. In these cases, the descriptor location value is incorrect anyway, and it was causing an incorrect null return value for MavenProject.getModulePathAlignment(..), which in turn produces an incorrect URL path calculation for multi-tiered inheritance where the top tiers are resolved from the repository.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@426112 13f79535-47bb-0310-9956-ffa450edef68
2006-07-27 16:02:26 +00:00
bootstrap Use constants for maven groupId 2006-07-24 16:04:09 +00:00
integration-tests POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-artifact Set svn properties 2006-07-08 15:49:37 +00:00
maven-artifact-ant POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-artifact-manager POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-artifact-test POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-cli Finally merged into branch 2006-07-25 16:01:00 +00:00
maven-core Use constants for maven groupId 2006-07-24 16:04:09 +00:00
maven-core-it Upgrade dependencies 2006-07-19 11:19:55 +00:00
maven-core-it-verifier POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-embedder Consolidating modello plugin configuration into parent-pom within pluginManagement. 2006-07-12 16:31:25 +00:00
maven-embedder-it POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-error-diagnostics POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-meeper Added wicket sync 2006-07-26 10:25:56 +00:00
maven-model Adding codeSegment for object identity to Plugin class. 2006-07-26 23:37:55 +00:00
maven-model-converter Check the directory creation 2006-07-27 08:27:02 +00:00
maven-monitor POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-plugin-api POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-plugin-descriptor Consolidating modello plugin configuration into parent-pom within pluginManagement. 2006-07-12 16:31:25 +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-plugin-tools Consolidating modello plugin configuration into parent-pom within pluginManagement. 2006-07-12 16:31:25 +00:00
maven-profile POM cleanup, remove inherited fields, added license and xsd 2006-07-07 12:23:28 +00:00
maven-project [MNG-2302] Added code to nullify parent's descriptor location in cases where the parent MavenProject instance was loaded from the repository. In these cases, the descriptor location value is incorrect anyway, and it was causing an incorrect null return value for MavenProject.getModulePathAlignment(..), which in turn produces an incorrect URL path calculation for multi-tiered inheritance where the top tiers are resolved from the repository. 2006-07-27 16:02:26 +00:00
maven-reporting Set svn properties 2006-07-08 15:49:37 +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 merge rev422968 from branch - release repo not needed and move snapshot repo to more specific pom 2006-07-18 05:12:35 +00:00
maven-settings Consolidating modello plugin configuration into parent-pom within pluginManagement. 2006-07-12 16:31:25 +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 switch bootstrap 2005-11-16 13:31:15 +00:00
bootstrap.bat Fix bootstrap under windows. 2005-11-17 10:27:31 +00:00
bootstrap.sh o we're not going to build the plugins so make sure that someone who has checked out the "maven" 2005-12-23 05:23:17 +00:00
ci.sh it's a duhrectory! 2006-04-08 07:47:04 +00:00
doap_Maven.rdf checking in generate DOAP 2006-07-18 15:21:23 +00:00
pom.xml Update parent pom version 2006-07-25 16:15:15 +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 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>