Fix JUnit reports location

Issue: SPR-14569
This commit is contained in:
Stephane Nicoll
2016-08-22 14:50:18 +02:00
parent c64cdcc47f
commit e6353f0ec7

View File

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