From d55cbf8b4dc2c45259bf69bf983f6b575e188938 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Mon, 13 Sep 2021 16:52:00 +0200 Subject: [PATCH] Avoid use of deprecated API in aggregateTestReports task See gh-26870 --- spring-test/spring-test.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-test/spring-test.gradle b/spring-test/spring-test.gradle index e15134600b..365ce7d316 100644 --- a/spring-test/spring-test.gradle +++ b/spring-test/spring-test.gradle @@ -112,7 +112,7 @@ test { task aggregateTestReports(type: TestReport) { description = "Aggregates JUnit and TestNG test reports." - destinationDir = test.reports.html.destination + destinationDir = test.reports.html.outputLocation.get().getAsFile() reportOn junit, testNG }