Skip to content

Commit

Permalink
Fix artifact rendering in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
antonsviridov-src committed Aug 7, 2024
1 parent f73c949 commit 46d43ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,6 @@ public void execute() throws MojoExecutionException, MojoFailureException {

private String summariseArtifact(Artifact artifact) {
return String.format(
"%:%:%", artifact.getGroupId(), artifact.getArtifactId(), artifact.getVersion());
"%s:%s:%s", artifact.getGroupId(), artifact.getArtifactId(), artifact.getVersion());
}
}

0 comments on commit 46d43ab

Please sign in to comment.