Skip to content

Commit

Permalink
Merge pull request #18192 from aloubyansky/filter-pom-as-not-reloadable
Browse files Browse the repository at this point in the history
Filter POM dependencies from the reloadable local artifacts
  • Loading branch information
aloubyansky authored Jun 28, 2021
2 parents 6bead1f + 5f59b07 commit 5987767
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public static List<LocalProject> filterNotReloadableDependencies(LocalProject lo
if (project == null) {
continue;
}
if ("test".equals(a.getScope())) {
if ("test".equals(a.getScope()) || "pom".equals(a.getType())) {
continue;
}
if (!project.getVersion().equals(a.getVersion())) {
Expand Down

0 comments on commit 5987767

Please sign in to comment.