Skip to content

Commit

Permalink
SplitPackageProcessor should also include information about type and …
Browse files Browse the repository at this point in the history
…classifier of any given app archive.
  • Loading branch information
manovotn committed Jul 28, 2021
1 parent 8033e5e commit ec729de
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ void splitPackageDetection(ApplicationArchivesBuildItem archivesBuildItem,
}
}
} else {
splitPackages.add(a.getGroupId() + ":" + a.getArtifactId());
splitPackages.add(a.getGroupId() + ":" + a.getArtifactId() +
(a.getClassifier().isEmpty() ? "" : (":" + a.getClassifier())) +
":" + a.getType());
}
}
splitPackagesWarning.append(splitPackages.stream().collect(Collectors.joining(", ", "[", "]")));
Expand Down

0 comments on commit ec729de

Please sign in to comment.