You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@taverna.apache.org by sa...@apache.org on 2018/01/26 13:42:10 UTC

[4/5] incubator-taverna-mobile git commit: fix Travis warning and uses ConfigurableReport.setDestination(File)instead ConfigurableReport.setDestination(Object) method

fix Travis warning and uses ConfigurableReport.setDestination(File)instead ConfigurableReport.setDestination(Object) method


Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/commit/5d862839
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/tree/5d862839
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/diff/5d862839

Branch: refs/heads/master
Commit: 5d862839f3f91844ad9db0d94e599c2c8d89fbe3
Parents: fe3b05e
Author: Sagar <ku...@gmail.com>
Authored: Fri Jan 26 18:54:49 2018 +0530
Committer: Sagar <ku...@gmail.com>
Committed: Fri Jan 26 18:54:49 2018 +0530

----------------------------------------------------------------------
 config/quality/quality.gradle | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/5d862839/config/quality/quality.gradle
----------------------------------------------------------------------
diff --git a/config/quality/quality.gradle b/config/quality/quality.gradle
index 2f5fff6..ca7031f 100644
--- a/config/quality/quality.gradle
+++ b/config/quality/quality.gradle
@@ -37,7 +37,7 @@ task checkstyle(type: Checkstyle, group: 'Verification', description: 'Runs code
     reports {
         xml.enabled = true
         xml {
-            destination "$reportsDir/checkstyle/checkstyle.xml"
+            destination file("$reportsDir/checkstyle/checkstyle.xml")
         }
     }
 
@@ -57,10 +57,10 @@ task pmd(type: Pmd, group: 'Verification', description: 'Inspect sourcecode for
         xml.enabled = true
         html.enabled = true
         xml {
-            destination "$reportsDir/pmd/pmd.xml"
+            destination file("$reportsDir/pmd/pmd.xml")
         }
         html {
-            destination "$reportsDir/pmd/pmd.html"
+            destination file("$reportsDir/pmd/pmd.html")
         }
     }
 }
@@ -84,10 +84,10 @@ task findbugs(type: FindBugs,
         xml.enabled = false
         html.enabled = true
         xml {
-            destination "$reportsDir/findbugs/findbugs.xml"
+            destination file("$reportsDir/findbugs/findbugs.xml")
         }
         html {12
-            destination "$reportsDir/findbugs/findbugs.html"
+            destination file("$reportsDir/findbugs/findbugs.html")
         }
     }