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 2020/09/26 19:24:53 UTC

[tapestry-5] branch java9modules updated: Attempt to get the combinedJacocoReport task to work (x3)

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

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


The following commit(s) were added to refs/heads/java9modules by this push:
     new ca32b51  Attempt to get the combinedJacocoReport task to work (x3)
ca32b51 is described below

commit ca32b51ea88cb6a2f96790165919717a817e033e
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Sat Sep 26 16:24:34 2020 -0300

    Attempt to get the combinedJacocoReport task to work (x3)
---
 build.gradle | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index f233e8b..e8dc388 100755
--- a/build.gradle
+++ b/build.gradle
@@ -407,7 +407,10 @@ dependencies {
 }
 
 task combinedJacocoReport(type:JacocoReport){
-  def subprojectsToConsider = subprojects.findAll {it.name != 'quickstart' && it.name != 'beanmodel' && it.name != 'commons'}
+  def subprojectsToConsider = subprojects.findAll {it.name != 'quickstart' && it.name != 'beanmodel' 
+  		&& it.name != 'commons' && it.name != 'genericsresolver-guava' && it.name != 'tapestry5-annotations'
+  		&& it.name != 'tapestry-internal-test' && it.name != 'tapestry-runner' 
+  		&& it.name != 'tapestry-test-constants' && it.name != 'tapestry-test-data'}
   dependsOn = subprojectsToConsider.test
   additionalSourceDirs = files(subprojectsToConsider.sourceSets.main.allSource.srcDirs)
   sourceDirectories = files(subprojectsToConsider.sourceSets.main.allSource.srcDirs)