Skip to content

Commit

Permalink
Merge pull request #111 from nebula-plugins/unique_copies_are_non_res…
Browse files Browse the repository at this point in the history
…olvable

Mark copied configurations as non-resolvable so that we do not lock copies of BOM configurations
  • Loading branch information
OdysseusLives authored Sep 19, 2019
2 parents 16c0615 + 4d1be76 commit c94fa09
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public void execute(Configuration configuration) {
if (!project.getRootProject().equals(project)) {
toExtend = bom.copy();
toExtend.setVisible(false);
toExtend.setCanBeResolved(false);
project.getConfigurations().add(toExtend);
}
configuration.extendsFrom(toExtend);
Expand Down

0 comments on commit c94fa09

Please sign in to comment.