Skip to content

Commit

Permalink
Filter POM dependencies from the reloadable local artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
aloubyansky committed Jun 28, 2021
1 parent 928d732 commit 5f59b07
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 5f59b07

Please sign in to comment.