From 3d93cc9b9bf2c029912801f66f369150ee98570e Mon Sep 17 00:00:00 2001 From: dohan <dohan001@hhu.de> Date: Tue, 15 Jan 2019 16:04:13 +0100 Subject: [PATCH] update to be compatible with gradle 5.0 --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 1c6c787..79f73ef 100644 --- a/build.gradle +++ b/build.gradle @@ -49,11 +49,12 @@ jacoco { reportsDir = file("$buildDir/JacocoReports") } + jacocoTestReport { reports { xml.enabled false csv.enabled false - html.destination "${buildDir}/jacocoHtml" + html.destination file("${buildDir}/jacocoHtml") } } -- GitLab