You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by br...@apache.org on 2005/07/27 17:59:43 UTC

svn commit: r225537 - /maven/components/trunk/maven-model/maven.mdo

Author: brett
Date: Wed Jul 27 08:59:38 2005
New Revision: 225537

URL: http://svn.apache.org/viewcvs?rev=225537&view=rev
Log:
fix incorrect key construction that hosed the build

Modified:
    maven/components/trunk/maven-model/maven.mdo

Modified: maven/components/trunk/maven-model/maven.mdo
URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-model/maven.mdo?rev=225537&r1=225536&r2=225537&view=diff
==============================================================================
--- maven/components/trunk/maven-model/maven.mdo (original)
+++ maven/components/trunk/maven-model/maven.mdo Wed Jul 27 08:59:38 2005
@@ -1278,7 +1278,7 @@
           <code><![CDATA[
             public String getManagementKey()
             {
-                return groupId + ":" + artifactId + ":" + type + classifier != null ? ":" + classifier : "";
+                return groupId + ":" + artifactId + ":" + type + (classifier != null ? ":" + classifier : "");
             }
           ]]></code>
         </codeSegment>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org