Skip Javadoc generation for the GraalVM feature module
It is currently broken due to missing modules/exports configuration and it is not a public API we want to document. Closes gh-29178
This commit is contained in:
parent
4625e92eb8
commit
77fdd69cd1
|
|
@ -21,6 +21,10 @@ tasks.withType(JavaCompile) {
|
|||
]
|
||||
}
|
||||
|
||||
tasks.withType(Javadoc) {
|
||||
enabled = false
|
||||
}
|
||||
|
||||
eclipse.classpath.file {
|
||||
whenMerged {
|
||||
entries.find{ it.path ==~ '.*JRE_CONTAINER.*' }.each {
|
||||
|
|
|
|||
Loading…
Reference in New Issue