Skip to content

Commit

Permalink
Merge pull request #2323 from square/jrod/2022-09-23/defer-task-init
Browse files Browse the repository at this point in the history
Defer Gradle task init
  • Loading branch information
jrodbx authored Sep 23, 2022
2 parents 3c7adae + 1c5c64c commit 6298eed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ subprojects {
google()
}

tasks.withType(Test) {
tasks.withType(Test).configureEach {
testLogging {
events "failed"
exceptionFormat "full"
Expand Down Expand Up @@ -122,7 +122,7 @@ subprojects {
version = VERSION_NAME
}

tasks.wrapper {
tasks.named('wrapper').configure {
distributionType = Wrapper.DistributionType.ALL
}

Expand Down

0 comments on commit 6298eed

Please sign in to comment.