Skip to content

Commit

Permalink
build.gradle: Use destinationDirectory instead of deprecated `desti…
Browse files Browse the repository at this point in the history
…nationDir`

in the `TestReport` task.
  • Loading branch information
msgilligan committed Sep 28, 2023
1 parent 0bc6d1c commit d39fb87
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 @@ -107,7 +107,7 @@ apply from: 'gradle/maven-publish.gradle'
apply from: 'gradle/github-pages.gradle'

tasks.register('testReport', TestReport) {
destinationDir = file("$buildDir/reports/allTests")
destinationDirectory = file("$buildDir/reports/allTests")
// Include the results from the `test` task in all subprojects
reportOn subprojects*.test
}
Expand Down

0 comments on commit d39fb87

Please sign in to comment.