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
This commit is contained in:
Stephane Nicoll
2016-08-22 14:10:12 +02:00
parent d48c32e7f6
commit c64cdcc47f

View File

@@ -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 {