Skip to content

Commit

Permalink
Merge pull request #19054 from manovotn/splitPackageProcAddTypeAndCla…
Browse files Browse the repository at this point in the history
…ssifier

SplitPackageProcessor should also include information about type and classifier of any given app archive
  • Loading branch information
manovotn authored Jul 28, 2021
2 parents 7f6926f + d02f682 commit f7a5c00
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ void splitPackageDetection(ApplicationArchivesBuildItem archivesBuildItem,
}
}
} else {
splitPackages.add(a.getGroupId() + ":" + a.getArtifactId());
// Generates an app archive information in form of groupId:artifactId:classifier:type
splitPackages.add(a.toString());
}
}
splitPackagesWarning.append(splitPackages.stream().collect(Collectors.joining(", ", "[", "]")));
Expand Down

0 comments on commit f7a5c00

Please sign in to comment.