Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: update docFX profile to enable overriding doclet path #1904

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,9 @@
<profiles>
<profile>
<id>docFX</id>
<properties>
<docletPath>${env.KOKORO_GFILE_DIR}/java-docfx-doclet-1.9.0.jar</docletPath>
</properties>
<build>
<plugins>
<plugin>
Expand All @@ -316,7 +319,8 @@
<!-- This is the new way of publishing the doc to cloud.google.com -->
<doclet>com.microsoft.doclet.DocFxDoclet</doclet>
<useStandardDocletOptions>false</useStandardDocletOptions>
<docletPath>${env.KOKORO_GFILE_DIR}/java-docfx-doclet-1.9.0.jar</docletPath>
<!-- Enable overriding of default doclet path for testing -->
<docletPath>${docletPath}</docletPath>
<additionalOptions>
-outputpath ${project.build.directory}/docfx-yml
-projectname ${artifactId}
Expand Down
Loading