Author: jdcasey Date: Wed Jul 26 15:04:57 2006 New Revision: 425871 URL: http://svn.apache.org/viewvc?rev=425871&view=rev Log: [MNG-1562] Added note that dependencyManagement matching identity is actually groupId:artifactId:type='jar'[:classifier].
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=425871&r1=425870&r2=425871&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 26 15:04:57 2006 @@ -261,9 +261,11 @@ <<NOTE:>> In two of these dependency references, we had to specify the \<type/\> element. This is because the minimal set of information for matching a dependency reference against a dependencyManagement section is actually - <<\{groupId, artifactId, type\}>>. In many cases, these dependencies will refer to - jar artifacts. This allows us to shorthand the identity set to <<\{groupId, artifactId\}>>, - since the default for the type field is <<<jar>>>. + <<\{groupId, artifactId, type, classifier\}>>. In many cases, these dependencies + will refer to jar artifacts with no classifier. This allows us to shorthand the + identity set to <<\{groupId, artifactId\}>>, since the default for the type field + is <<<jar>>>, and the default classifier is null. + The reference information about the dependency management tags is available from the {{{maven-model/maven.html#class_DependencyManagement}project descriptor reference}}. -----