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

Commit 1e0e382

Browse files
authored
chore: fix doc generation (#317)
1 parent 6d8eeb4 commit 1e0e382

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,9 @@ task javadocCombinedV3(type: Javadoc) {
354354
options.addStringOption("doclet", "com.microsoft.doclet.DocFxDoclet")
355355
options.addStringOption("projectname", "api-common")
356356
options.docletpath = [file(System.getenv('KOKORO_GFILE_DIR') + "/java-docfx-doclet-1.3.0.jar")]
357+
// Newer Gradle 6 passes -notimestamp by default, which the doclet above doesn't understand:
358+
// https://github.com/gradle/gradle/issues/11898
359+
options.noTimestamp false
357360
}
358361

359362
clean {

0 commit comments

Comments
 (0)