]> source.dussan.org Git - archiva.git/commitdiff
[MRM-560] Dependency Tree causes an Exception
authorJoakim Erdfelt <joakime@apache.org>
Fri, 26 Oct 2007 23:49:53 +0000 (23:49 +0000)
committerJoakim Erdfelt <joakime@apache.org>
Fri, 26 Oct 2007 23:49:53 +0000 (23:49 +0000)
Improving exception messages on bad ArchivaArtifact to include what details it does have.

git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@588805 13f79535-47bb-0310-9956-ffa450edef68

archiva-base/archiva-model/src/main/java/org/apache/maven/archiva/model/ArchivaArtifact.java
archiva-base/archiva-model/src/main/java/org/apache/maven/archiva/model/Keys.java

index 1ebed65eacc2abff34282e8eceda264b430cc391..d7ce2a1555fe8fd66092593be3bd7b4ea5babd45 100644 (file)
@@ -41,22 +41,26 @@ public class ArchivaArtifact
     {
         if ( empty( groupId ) )
         {
-            throw new IllegalArgumentException( "Unable to create ArchivaArtifact with empty groupId." );
+            throw new IllegalArgumentException( "Unable to create ArchivaArtifact with empty groupId ["
+                + Keys.toKey( groupId, artifactId, version, classifier, type ) + "]" );
         }
 
         if ( empty( artifactId ) )
         {
-            throw new IllegalArgumentException( "Unable to create ArchivaArtifact with empty artifactId." );
+            throw new IllegalArgumentException( "Unable to create ArchivaArtifact with empty artifactId ["
+                + Keys.toKey( groupId, artifactId, version, classifier, type ) + "]" );
         }
 
         if ( empty( version ) )
         {
-            throw new IllegalArgumentException( "Unable to create ArchivaArtifact with empty version." );
+            throw new IllegalArgumentException( "Unable to create ArchivaArtifact with empty version ["
+                + Keys.toKey( groupId, artifactId, version, classifier, type ) + "]" );
         }
 
         if ( empty( type ) )
         {
-            throw new IllegalArgumentException( "Unable to create ArchivaArtifact with empty type." );
+            throw new IllegalArgumentException( "Unable to create ArchivaArtifact with empty type ["
+                + Keys.toKey( groupId, artifactId, version, classifier, type ) + "]" );
         }
 
         model = new ArchivaArtifactModel();
index b89aec6d93f7d536183c4a7849dce739852697ba..7d4340fc35c792a98f7bd224b59887bc07133c5e 100644 (file)
@@ -34,20 +34,25 @@ public class Keys
     {
         return toKey( model.getGroupId(), model.getArtifactId(), model.getVersion() );
     }
-
-    public static String toKey( ArtifactReference ref )
+    
+    public static String toKey( String groupId, String artifactId, String version, String classifier, String type )
     {
         StringBuffer key = new StringBuffer();
 
-        key.append( ref.getGroupId() ).append( ":" );
-        key.append( ref.getArtifactId() ).append( ":" );
-        key.append( ref.getVersion() ).append( ":" );
-        key.append( StringUtils.defaultString( ref.getClassifier() ) ).append( ":" );
-        key.append( ref.getType() );
+        key.append( groupId ).append( ":" );
+        key.append( artifactId ).append( ":" );
+        key.append( version ).append( ":" );
+        key.append( StringUtils.defaultString( classifier ) ).append( ":" );
+        key.append( type );
 
         return key.toString();
     }
 
+    public static String toKey( ArtifactReference ref )
+    {
+        return toKey( ref.getGroupId(), ref.getArtifactId(), ref.getVersion(), ref.getClassifier(), ref.getType() );
+    }
+
     public static String toKey( ProjectReference ref )
     {
         StringBuffer key = new StringBuffer();
@@ -71,12 +76,6 @@ public class Keys
     
     public static String toKey( VersionedReference ref )
     {
-        StringBuffer key = new StringBuffer();
-
-        key.append( ref.getGroupId() ).append( ":" );
-        key.append( ref.getArtifactId() ).append( ":" );
-        key.append( ref.getVersion() );
-
-        return key.toString();
+        return toKey( ref.getGroupId(), ref.getArtifactId(), ref.getVersion() );
     }
 }