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:33:40 UTC

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

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 242cb30  Attempt to get the combinedJacocoReport task to work (x4)
242cb30 is described below

commit 242cb30c283e4632075730090163950330820752
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Sat Sep 26 16:33:09 2020 -0300

    Attempt to get the combinedJacocoReport task to work (x4)
---
 build.gradle | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/build.gradle b/build.gradle
index e8dc388..8c8e93f 100755
--- a/build.gradle
+++ b/build.gradle
@@ -407,10 +407,7 @@ dependencies {
 }
 
 task combinedJacocoReport(type:JacocoReport){
-  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'}
+  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)