Skip to content

Commit

Permalink
Fixing issue with CI when resolves dependencies
Browse files Browse the repository at this point in the history
With the Gradle 4.x upgrade, you can't resolve some configurations. This
change makes it so we won't resolve configurations that aren't
resolveable
  • Loading branch information
ethankhall committed Mar 8, 2018
1 parent 83046d4 commit c5db36e
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 @@ -24,7 +24,7 @@ subprojects {
group = 'CI'
doLast {
//noinspection GroovyAssignabilityCheck
configurations.each { conf ->
configurations.findAll { it.isCanBeResolved() }.each { conf ->
conf.files
}
}
Expand Down

0 comments on commit c5db36e

Please sign in to comment.