Skip to content

Commit

Permalink
Merge pull request #598 from gsmet/quarkus-2.11.2
Browse files Browse the repository at this point in the history
Upgrade to Quarkus 2.11.2.Final
  • Loading branch information
gsmet authored Aug 5, 2022
2 parents ae45787 + f851d76 commit 2f58f81
Show file tree
Hide file tree
Showing 7 changed files with 1,393 additions and 1,393 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ private String getSourceEncoding() {

private void addProject(MavenDevModeLauncher.Builder builder, ResolvedDependency module, boolean root) throws Exception {

if (!ArtifactCoords.TYPE_JAR.equals(module.getType())) {
if (!module.isJar()) {
return;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ private ArtifactCoords appArtifact(QuarkusBootstrapMojo mojo)
if (coordsArr.length == 3) {
version = coordsArr[2];
} else if (coordsArr.length > 3) {
classifier = coordsArr[2] == null ? "" : coordsArr[2];
classifier = coordsArr[2] == null ? ArtifactCoords.DEFAULT_CLASSIFIER : coordsArr[2];
type = coordsArr[3] == null ? ArtifactCoords.TYPE_JAR : coordsArr[3];
if (coordsArr.length > 4) {
version = coordsArr[4];
Expand Down
Loading

0 comments on commit 2f58f81

Please sign in to comment.