From e6353f0ec7d92e4174044be05ac13b14732229b2 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 22 Aug 2016 14:50:18 +0200 Subject: [PATCH] Fix JUnit reports location Issue: SPR-14569 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index fc49d9b08ab..e104287288b 100644 --- a/build.gradle +++ b/build.gradle @@ -160,7 +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") + reports.junitXml.destination = file("$buildDir/test-results") } repositories {