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:17 UTC

[lucene] branch main 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 main
in repository https://gitbox.apache.org/repos/asf/lucene.git


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

commit 263765a9b0c273d660e8f293b7906eb72c7d3a86
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.