kwin commented on code in PR #164:
URL: 
https://github.com/apache/maven-javadoc-plugin/pull/164#discussion_r974915596


##########
src/main/java/org/apache/maven/plugins/javadoc/resolver/ResourceResolver.java:
##########
@@ -415,14 +412,15 @@ private Collection<Path> resolveAndUnpack( final 
List<Artifact> artifacts,
                 if ( propagateErrors )
                 {
                     throw new ArtifactResolutionException( "Failed to retrieve 
valid un-archiver component: "
-                        + a.getType(), a, e );
+                        + a.getExtension(), RepositoryUtils.toArtifact( a ), e 
);
                 }
             }
             catch ( final ArchiverException e )
             {
                 if ( propagateErrors )
                 {
-                    throw new ArtifactResolutionException( "Failed to unpack: 
" + a.getId(), a, e );
+                    throw new ArtifactResolutionException( "Failed to unpack: 
" + a.toString(),

Review Comment:
   Fixed in 
https://github.com/apache/maven-javadoc-plugin/pull/164/commits/b88e2980334497fbafa0d26dd48fcf136f819dd0.



##########
src/main/java/org/apache/maven/plugins/javadoc/resolver/ResourceResolver.java:
##########
@@ -19,26 +19,29 @@
  * under the License.
  */
 
+

Review Comment:
   Fixed in 
https://github.com/apache/maven-javadoc-plugin/pull/164/commits/b88e2980334497fbafa0d26dd48fcf136f819dd0.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to