Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
Fix Java 11 Javadoc generation (#1529)
Browse files Browse the repository at this point in the history
Co-authored-by: Neenu Shaji <Neenu1995@users.noreply.github.com>
  • Loading branch information
chanseokoh and Neenu1995 committed Oct 15, 2021
1 parent ee9e6f4 commit d76744d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.gradle
Expand Up @@ -392,6 +392,9 @@ task javadocCombinedV3(type: Javadoc) {
options.addStringOption("doclet", "com.microsoft.doclet.DocFxDoclet")
options.addStringOption("projectname", "gax")
options.docletpath = [file(System.getenv('KOKORO_GFILE_DIR') + "/java-docfx-doclet-1.3.0.jar")]
// Newer Gradle 6 passes -notimestamp by default, which the doclet above doesn't understand:
// https://github.com/gradle/gradle/issues/11898
options.noTimestamp false
}

clean {
Expand Down

0 comments on commit d76744d

Please sign in to comment.