-
Notifications
You must be signed in to change notification settings - Fork 289
Update custom Doclet configuration for javadoc #587
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
Changes from all commits
463e685
a72d867
496beb9
113f21c
8452c9d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,16 +77,6 @@ | |
</distributionManagement> | ||
|
||
<profiles> | ||
<profile> | ||
<!-- Disable Doclint on Java 8 and higher --> | ||
<id>disable-java8-doclint</id> | ||
<activation> | ||
<jdk>[1.8,)</jdk> | ||
</activation> | ||
<properties> | ||
<additionalparam>-Xdoclint:none</additionalparam> | ||
</properties> | ||
</profile> | ||
<profile> | ||
<id>devsite-apidocs</id> | ||
<activation> | ||
|
@@ -123,18 +113,19 @@ | |
<version>1.3</version> | ||
</additionalDependency> | ||
</additionalDependencies> | ||
<additionalparam> | ||
-hdf book.path /docs/reference/_book.yaml | ||
-hdf project.path /_project.yaml | ||
-hdf devsite.path /docs/reference/admin/java/reference/ | ||
-d ${project.build.directory}/apidocs | ||
-templatedir ${devsite.template} | ||
-toroot /docs/reference/admin/java/reference/ | ||
-yaml _toc.yaml | ||
-warning 101 | ||
</additionalparam> | ||
<additionalOptions> | ||
<additionalOption>-hdf book.path /docs/reference/_book.yaml</additionalOption> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We need to pass the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks! Added |
||
<additionalOption>-hdf project.path /_project.yaml</additionalOption> | ||
<additionalOption>-hdf devsite.path /docs/reference/admin/java/reference/</additionalOption> | ||
<additionalOption>-d ${project.build.directory}/apidocs</additionalOption> | ||
<additionalOption>-templatedir ${devsite.template}</additionalOption> | ||
<additionalOption>-toroot /docs/reference/admin/java/reference/</additionalOption> | ||
<additionalOption>-yaml _toc.yaml</additionalOption> | ||
<additionalOption>-warning 101</additionalOption> | ||
</additionalOptions> | ||
<useStandardDocletOptions>false</useStandardDocletOptions> | ||
<additionalJOption>-J-Xmx1024m</additionalJOption> | ||
<doclint>none</doclint> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
|
@@ -334,11 +325,12 @@ | |
<version>1.3</version> | ||
</additionalDependency> | ||
</additionalDependencies> | ||
<additionalparam> | ||
-warning 101 | ||
</additionalparam> | ||
<additionalOptions> | ||
<additionalOption>-warning 101</additionalOption> | ||
</additionalOptions> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Probably need doclint:none here too. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updated. Thanks! |
||
<useStandardDocletOptions>false</useStandardDocletOptions> | ||
<additionalJOption>-J-Xmx1024m</additionalJOption> | ||
<doclint>none</doclint> | ||
</configuration> | ||
</plugin> | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.