elharo commented on code in PR #436: URL: https://github.com/apache/maven-dependency-plugin/pull/436#discussion_r1797776699
########## src/main/java/org/apache/maven/plugins/dependency/utils/CopyUtil.java: ########## @@ -51,18 +47,16 @@ public CopyUtil(BuildContext buildContext) { } /** - * Does the actual copy of the artifact (file) and logging. + * Copies the artifact (file). * - * @param sourceArtifact represents the artifact (file) to copy. - * @param destination file name of destination file. + * @param sourceArtifact represents the artifact (file) to copy + * @param destination file name of destination file * @throws IOException if copy has failed * @throws MojoExecutionException if artifact file is a directory (which has not been packaged yet) * * @since 3.7.0 */ public void copyArtifactFile(Artifact sourceArtifact, File destination) throws IOException, MojoExecutionException { - logger.info("Copying artifact '{}' ({}) to {}", sourceArtifact, sourceArtifact.getFile(), destination); Review Comment: OK, done -- 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