This is an automated email from the ASF dual-hosted git repository. paulk pushed a commit to branch GROOVY_3_0_X in repository https://gitbox.apache.org/repos/asf/groovy.git
commit e016dab2fc6541827c19df596165f824315064fd Author: Paul King <[email protected]> AuthorDate: Sun Jan 12 18:20:32 2020 +1000 GROOVY-8296: Groovydoc Recognition exception with Java 8 class (remove temp hack) --- gradle/docs.gradle | 1 - subprojects/groovy-testng/build.gradle | 4 ---- 2 files changed, 5 deletions(-) diff --git a/gradle/docs.gradle b/gradle/docs.gradle index cce9bbc..d91243a 100644 --- a/gradle/docs.gradle +++ b/gradle/docs.gradle @@ -110,7 +110,6 @@ groovydocAll { classpath += sp.groovydoc.classpath groovyClasspath += sp.groovydoc.groovyClasspath } - exclude 'org/codehaus/groovy/testng/TestNgRunner.java' // TODO fix antlr4 groovydoc and remove exclusion } groovydocAll groovydocBaseSpec diff --git a/subprojects/groovy-testng/build.gradle b/subprojects/groovy-testng/build.gradle index cab7fb0..d44ee31 100644 --- a/subprojects/groovy-testng/build.gradle +++ b/subprojects/groovy-testng/build.gradle @@ -24,7 +24,3 @@ dependencies { } testImplementation project(':groovy-test') } - -groovydoc { - exclude 'org/codehaus/groovy/testng/TestNgRunner.java' // TODO fix antlr4 groovydoc and remove exclusion -} \ No newline at end of file
