From 0f773515e4394bb090be51cad010f17842ade690 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sun, 21 Jul 2019 20:29:40 +0200 Subject: [PATCH] Remove unnecessary test results directory configuration Commit eec183ef2840d0e3cc20af01f69cda1adea7383e configured the Artifactory Gradle task in the Default Job of the Bamboo build plan for the Spring Framework (SPR-PUB) to use the following Gradle-friendly test results directory pattern: `**/build/test-results/**/*.xml`. That change made the existing custom configuration of the test results directory in the common Gradle `test` task obsolete. --- build.gradle | 1 - 1 file changed, 1 deletion(-) diff --git a/build.gradle b/build.gradle index 3144f8442e..38a295223a 100644 --- a/build.gradle +++ b/build.gradle @@ -146,7 +146,6 @@ configure(allprojects) { project -> // classes with the "$" pattern; otherwise, using -Dtest.single=MyTests to // run MyTests by itself will fail if MyTests contains any inner classes. exclude(["**/Abstract*.class", '**/*$*']) - reports.junitXml.setDestination(file("$buildDir/test-results")) } checkstyle {