Skip to content

Commit

Permalink
Put back excluded configurations to dependency locking
Browse files Browse the repository at this point in the history
fixes gh-2743
  • Loading branch information
jonatan-ivanov committed Aug 12, 2021
1 parent 7cde1c4 commit 122d677
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -233,10 +233,8 @@ subprojects {
assert gradle.startParameter.writeDependencyLocks : 'Execute resolveAndLockAll --write-locks'
}
doLast {
def skip = ['annotationProcessor', 'apt', 'testAnnotationProcessor', 'checkstyle', 'shadow', 'testApt', 'archives', 'junitPlatform']
configurations
project.configurations
.findAll { it.canBeResolved }
.findAll { !skip.contains(it.name) }
.each { it.resolve() }
}
}
Expand Down

0 comments on commit 122d677

Please sign in to comment.