Skip to content

Commit

Permalink
Fix bug of resolving project dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsonlee committed Jul 2, 2022
1 parent 5e72cd8 commit efe3642
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ private fun Project.getResolvedArtifactResultsRecursively(transitive: Boolean, r

if (!transitive) continue

resolved.filterIsInstance<ProjectComponentIdentifier>().map {
resolved.map {
it.id.componentIdentifier
}.filterIsInstance<ProjectComponentIdentifier>().map {
rootProject.project(it.projectPath)
}.let(stack::addAll)
}
Expand Down

0 comments on commit efe3642

Please sign in to comment.