You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2021/11/09 07:38:53 UTC

[lucene] branch branch_9x updated: LUCENE-10226: test target creates a weird folder (lazy property).

This is an automated email from the ASF dual-hosted git repository.

dweiss pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/lucene.git


The following commit(s) were added to refs/heads/branch_9x by this push:
     new 238cd5f  LUCENE-10226: test target creates a weird folder (lazy property).
238cd5f is described below

commit 238cd5fd0c39ee2798c958ff3270d5df4da4ef3a
Author: Dawid Weiss <da...@carrotsearch.com>
AuthorDate: Tue Nov 9 08:34:04 2021 +0100

    LUCENE-10226: test target creates a weird folder (lazy property).
---
 gradle/testing/defaults-tests.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gradle/testing/defaults-tests.gradle b/gradle/testing/defaults-tests.gradle
index 4d36a67..a6d59ee 100644
--- a/gradle/testing/defaults-tests.gradle
+++ b/gradle/testing/defaults-tests.gradle
@@ -90,7 +90,7 @@ allprojects {
 
     tasks.withType(Test) {
       ext {
-        testOutputsDir = file("${reports.junitXml.outputLocation}/outputs")
+        testOutputsDir = file("${reports.junitXml.outputLocation.get()}/outputs")
       }
 
       // LUCENE-9660: Make it possible to always rerun tests, even if they're incrementally up-to-date.