Closed ugupta closed 10 years ago
We had the same issue and fixed it by simply setting the title property of the task to null:
task apiDocs(type: Javadoc) {
source = sourceSets.main.allJava
title = null
...
}
OMG, can't believe this is the fix. Please close this issue. Thanks.
I am getting this error when I am trying to run this as a gradle task.
my current workaround is something like this
Tried searching and found that it should be the doclet problem. http://stackoverflow.com/questions/11034326/javadoc-does-not-recognize-doctitle-option-flag
Downloaded the code and tried extending doclet with
com.sun.tools.doclets.standard.Standard
and
com.sun.javadoc.Doclet
Didn't work
even tried changing LanguageVersion.JAVA_1_5 to LanguageVersion.JAVA_1_1
so at this point I am leaving it to the community here for suggestions.