Skip to content

Commit

Permalink
ARROW-8649: [Java] [Website] Java documentation on website is hidden
Browse files Browse the repository at this point in the history
This proposal moves the generated javadoc site from /docs/java/ to /docs/java/reference/. It appears that Sphinx is generating a /docs/java/index.html that has links to the Java prose docs, but the docs_build.sh script was overwriting it with the javadoc.

Closes apache#7409 from nealrichardson/java-docs

Authored-by: Neal Richardson <[email protected]>
Signed-off-by: Wes McKinney <[email protected]>
  • Loading branch information
nealrichardson authored and wesm committed Jun 12, 2020
1 parent e7e43dd commit f903a45
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ci/scripts/docs_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ rsync -a ${arrow_dir}/r/docs/ ${build_dir}/r
rsync -a ${ARROW_HOME}/share/gtk-doc/html/ ${build_dir}/c_glib

# Java
rsync -a ${arrow_dir}/java/target/site/apidocs/ ${build_dir}/java
rsync -a ${arrow_dir}/java/target/site/apidocs/ ${build_dir}/java/reference

# Javascript
rsync -a ${arrow_dir}/js/doc/ ${build_dir}/js
6 changes: 3 additions & 3 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ such topics as:
:caption: Arrow Libraries

status
C++ <cpp/index>
Python <python/index>
Java <https://arrow.apache.org/docs/java/>
C/GLib <https://arrow.apache.org/docs/c_glib/>
C++ <cpp/index>
Java <java/index>
JavaScript <https://arrow.apache.org/docs/js/>
Python <python/index>
R <https://arrow.apache.org/docs/r/>

.. _toc.development:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/java/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ on the Arrow format and other language bindings see the :doc:`parent documentati
vector
vector_schema_root
ipc

Reference (javadoc) <https://arrow.apache.org/docs/java/reference/>

0 comments on commit f903a45

Please sign in to comment.