You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2009/07/29 16:35:29 UTC

svn commit: r798922 - /maven/site/trunk/src/site/apt/guides/introduction/introduction-to-dependency-mechanism.apt

Author: bentmann
Date: Wed Jul 29 14:35:29 2009
New Revision: 798922

URL: http://svn.apache.org/viewvc?rev=798922&view=rev
Log:
o Fixed Maven version with respect to dependency ordering, there were issues at least up to Maven 2.0.8 (cf. MNG-1412)

Modified:
    maven/site/trunk/src/site/apt/guides/introduction/introduction-to-dependency-mechanism.apt

Modified: maven/site/trunk/src/site/apt/guides/introduction/introduction-to-dependency-mechanism.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/introduction/introduction-to-dependency-mechanism.apt?rev=798922&r1=798921&r2=798922&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/introduction/introduction-to-dependency-mechanism.apt (original)
+++ maven/site/trunk/src/site/apt/guides/introduction/introduction-to-dependency-mechanism.apt Wed Jul 29 14:35:29 2009
@@ -50,8 +50,8 @@
      versions of an artifact are encountered. Currently, Maven 2.0 only supports using the "nearest definition" which means
      that it will use the version of the closest dependency to your project in the tree of dependencies.
      You can always guarantee a version by declaring it explicitly in your project's POM.
-     Note that if two dependency versions are at the same depth in the dependency tree, until Maven 2.0.4 it was not defined which one would win,
-     but since Maven 2.0.5 it's the order in the declaration that counts: the first declaration wins.
+     Note that if two dependency versions are at the same depth in the dependency tree, until Maven 2.0.8 it was not defined which one would win,
+     but since Maven 2.0.9 it's the order in the declaration that counts: the first declaration wins.
 
      * "nearest definition" means that the version used will be the closest one to your project in the tree of dependencies,
         eg. if dependencies for A, B, and C are defined as A -> B -> C -> D 2.0 and A -> E -> D 1.0,