You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by th...@apache.org on 2022/02/12 02:23:29 UTC

[tapestry-5] branch latest-java-tests updated: TAP5-2700: trying to fix JaCoCo, 2nd attempt

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

thiagohp pushed a commit to branch latest-java-tests
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/latest-java-tests by this push:
     new 78db7b4  TAP5-2700: trying to fix JaCoCo, 2nd attempt
78db7b4 is described below

commit 78db7b4f4ee46fa22128ea6aa6225c0036e5d6ec
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Fri Feb 11 23:23:14 2022 -0300

    TAP5-2700: trying to fix JaCoCo, 2nd attempt
---
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index 8be2bb1..309bd92 100755
--- a/build.gradle
+++ b/build.gradle
@@ -446,7 +446,7 @@ task combinedJacocoReport(type:JacocoReport){
   additionalSourceDirs.from(files(subprojectsToConsider.sourceSets.main.allSource.srcDirs))
   sourceDirectories.from(files(subprojectsToConsider.sourceSets.main.allSource.srcDirs))
   classDirectories.from(files(subprojectsToConsider.sourceSets.main.output))
-  executionData.from(files(subprojectsToConsider.jacocoTestReport.executionData))
+  executionData.from(files(subprojectsToConsider.jacocoTestReport.executionData).findAll { it.exists() })
   jacocoClasspath = files(subprojectsToConsider.jacocoTestReport.jacocoClasspath)
   reports {
       html {