Skip to content

Commit

Permalink
Upgrade to Quarkus 2.13.4.Final
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Nov 7, 2022
1 parent 2f99e7d commit 4c8ee9b
Show file tree
Hide file tree
Showing 6 changed files with 1,216 additions and 1,194 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,12 @@ && isNativeProfileEnabled(mavenProject())) {
}
}
if (uberJarWithSuffix) {
projectHelper.attachArtifact(mavenProject(), result.getJar().getPath().toFile(),
result.getJar().getClassifier());
if (result.getJar().getClassifier().isEmpty()) {
original.setFile(result.getJar().getPath().toFile());
} else {
projectHelper.attachArtifact(mavenProject(), result.getJar().getPath().toFile(),
result.getJar().getClassifier());
}
}
}
} finally {
Expand Down
Loading

0 comments on commit 4c8ee9b

Please sign in to comment.