From 40fbe3d40cbcfa3efe1bb46ede76dc9d0359505c Mon Sep 17 00:00:00 2001 From: Paul King Date: Mon, 20 Aug 2018 09:23:09 +1000 Subject: [PATCH] fix groovydoc build config for JDK11 --- subprojects/groovy-jaxb/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/subprojects/groovy-jaxb/build.gradle b/subprojects/groovy-jaxb/build.gradle index a10ec2f5671..a0370b784b3 100644 --- a/subprojects/groovy-jaxb/build.gradle +++ b/subprojects/groovy-jaxb/build.gradle @@ -42,6 +42,9 @@ if (JavaVersion.current().isJava9Compatible()) { tasks.withType(Javadoc) { classpath += configurations.jaxb } + tasks.withType(Groovydoc) { + classpath += configurations.jaxb + } tasks.withType(GroovyCompile) { groovyClasspath += configurations.jaxb classpath += configurations.jaxb