Skip to content

Commit

Permalink
Fix logic for only resolving dependency management when necessary
Browse files Browse the repository at this point in the history
Closes gh-339
  • Loading branch information
wilkinsona committed Sep 22, 2022
1 parent 251d6f1 commit b13fae0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -134,7 +134,7 @@ Exclusions getExclusions() {
}

private void resolveIfNecessary() {
if (this.importedBoms.isEmpty() && this.resolved) {
if (this.importedBoms.isEmpty() || this.resolved) {
return;
}
try {
Expand Down

0 comments on commit b13fae0

Please sign in to comment.