Repository: tapestry-5
Updated Branches:
  refs/heads/master 7368fdc53 -> 18b54a842


Gradle 3 insists that we specify destinations for reports even if they are 
disabled


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/b3e07f6d
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/b3e07f6d
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/b3e07f6d

Branch: refs/heads/master
Commit: b3e07f6d3a604b2266905c9888cc0d4f0082d627
Parents: 7368fdc
Author: Jochen Kemnade <jkemn...@apache.org>
Authored: Thu Sep 22 12:08:52 2016 +0200
Committer: Jochen Kemnade <jkemn...@apache.org>
Committed: Thu Sep 22 12:08:52 2016 +0200

----------------------------------------------------------------------
 build.gradle | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/b3e07f6d/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index c1db6cc..68b59ac 100755
--- a/build.gradle
+++ b/build.gradle
@@ -399,8 +399,14 @@ task combinedJacocoReport(type:JacocoReport){
         enabled = true
         destination = "$buildDir/reports/jacoco"
       }
-      xml.enabled = false
-      csv.enabled = false
+      xml {
+        enabled = false
+        destination = "unused"
+      }
+      csv {
+        enabled = false
+        destination = "unused"
+      }
   }
   onlyIf = {
       true

Reply via email to