From c64cdcc47f2f49b2ed630eaa8026fde3c62130e2 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 22 Aug 2016 14:10:12 +0200 Subject: [PATCH] Restore JUnit reports location Since the upgrade to Gradle 3, our Bamboo build is failing because it can't find test reports "at the usual location". This commit restores the location that Gradle 2 was using until we upgrade to a version of Bamboo that supports it. Issue: SPR-14569 --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index 4730a62decd..fc49d9b08ab 100644 --- a/build.gradle +++ b/build.gradle @@ -160,6 +160,7 @@ 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.destination = file("$buildDir/test-reports") } repositories {