Skip to content

Commit c94fa09

Browse files
Merge pull request #111 from nebula-plugins/unique_copies_are_non_resolvable
Mark copied configurations as non-resolvable so that we do not lock copies of BOM configurations
2 parents 16c0615 + 4d1be76 commit c94fa09

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/groovy/netflix/nebula/dependency/recommender/ExtendRecommenderConfigurationAction.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ public void execute(Configuration configuration) {
3232
if (!project.getRootProject().equals(project)) {
3333
toExtend = bom.copy();
3434
toExtend.setVisible(false);
35+
toExtend.setCanBeResolved(false);
3536
project.getConfigurations().add(toExtend);
3637
}
3738
configuration.extendsFrom(toExtend);

0 commit comments

Comments
 (0)