Skip to content

Commit

Permalink
Merge pull request #5355 from bjhargrave/maven-artifact-extension
Browse files Browse the repository at this point in the history
maven: Use getExtension to map the artifact type into the file extension
  • Loading branch information
bjhargrave committed Aug 23, 2022
2 parents 60392b5 + ae867c4 commit 74b8924
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -677,10 +677,10 @@ private String getExtension(String type) {
private String createArtifactName(Artifact artifact) {
String classifier = artifact.getClassifier();
if ((classifier == null) || classifier.isEmpty()) {
return String.format("%s-%s.%s", artifact.getArtifactId(), artifact.getVersion(), artifact.getType());
return String.format("%s-%s.%s", artifact.getArtifactId(), artifact.getVersion(), getExtension(artifact.getType()));
}
return String.format("%s-%s-%s.%s", artifact.getArtifactId(), artifact.getVersion(), classifier,
artifact.getType());
getExtension(artifact.getType()));
}

private File loadProperties(Builder builder) throws Exception {
Expand Down

0 comments on commit 74b8924

Please sign in to comment.