Skip to content

Commit

Permalink
Fix dependencyManagement for included build.
Browse files Browse the repository at this point in the history
  • Loading branch information
Oberon00 committed Sep 13, 2021
1 parent f02b878 commit da625fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/otel.java-conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ dependencies {
dependencyManagement(platform(project(":dependencyManagement")))
afterEvaluate {
configurations.configureEach {
if (isCanBeResolved && !isCanBeConsumed) {
if (!isCanBeConsumed && this != dependencyManagement) {
extendsFrom(dependencyManagement)
}
}
Expand Down

0 comments on commit da625fc

Please sign in to comment.