Skip to content

Commit

Permalink
Upgrade to Quarkus 2.14.1.Final
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Nov 16, 2022
1 parent 363243c commit 59d598a
Show file tree
Hide file tree
Showing 9 changed files with 1,279 additions and 1,265 deletions.
6 changes: 3 additions & 3 deletions generated-platform-project/quarkus-camel/bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11127,17 +11127,17 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-script-util</artifactId>
<version>1.7.20</version>
<version>1.7.21</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-scripting-jvm-host</artifactId>
<version>1.7.20</version>
<version>1.7.21</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-scripting-jvm</artifactId>
<version>1.7.20</version>
<version>1.7.21</version>
</dependency>
<dependency>
<groupId>org.jruby.jcodings</groupId>
Expand Down
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 59d598a

Please sign in to comment.