Skip to content

Commit

Permalink
Fix resolveAllDependencies to ignore testCompile (#58080) (#58086)
Browse files Browse the repository at this point in the history
  • Loading branch information
breskeby authored Jun 14, 2020
1 parent eddb9d1 commit 6e1a3d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ allprojects {
dependsOn tasks.withType(ComposePull)
}
doLast {
configurations.findAll { it.isCanBeResolved() }.each { it.resolve() }
configurations.findAll { it.isCanBeResolved() && !it.name.equals("testCompile") }.each { it.resolve() }
}
}

Expand Down

0 comments on commit 6e1a3d5

Please sign in to comment.