You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2023/07/25 12:38:43 UTC

[groovy] branch master updated: revert to TXT output as temp workaround for broken HTML reporting: https://github.com/melix/japicmp-gradle-plugin/issues/62

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

paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new 0f65898457 revert to TXT output as temp workaround for broken HTML reporting: https://github.com/melix/japicmp-gradle-plugin/issues/62
0f65898457 is described below

commit 0f6589845774ef7a7a979913017dca9a8fd0fc71
Author: Paul King <pa...@asert.com.au>
AuthorDate: Tue Jul 25 22:38:31 2023 +1000

    revert to TXT output as temp workaround for broken HTML reporting:
    https://github.com/melix/japicmp-gradle-plugin/issues/62
---
 subprojects/binary-compatibility/build.gradle | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/subprojects/binary-compatibility/build.gradle b/subprojects/binary-compatibility/build.gradle
index 6dd6ce589d..0d1341145e 100644
--- a/subprojects/binary-compatibility/build.gradle
+++ b/subprojects/binary-compatibility/build.gradle
@@ -54,7 +54,12 @@ rootProject.allprojects {
                 ignoreMissingClasses = true
                 classExcludes = ["**_closure**", "org.codehaus.groovy.runtime.dgm\$**"]
                 packageExcludes = ["**internal**", "groovyjarjar**"]
-                htmlOutputFile = file("${thisProject.buildDir}/reports/${taskName}.html")
+//                richReport {
+//                    destinationDir = file("${thisProject.buildDir}/reports/")
+//                    reportName = "${taskName}.html"
+//                }
+//                htmlOutputFile = file("${thisProject.buildDir}/reports/${taskName}.html")
+                txtOutputFile = file("${thisProject.buildDir}/reports/${taskName}.txt")
             }
             checkBinaryCompatibility.configure {
                 dependsOn(singleProjectCheck)