This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 5ff76b743 docs: remove crosslinking to Arrow Javadocs (#2455)
5ff76b743 is described below
commit 5ff76b7437470a203ce56267323733bc08d465d6
Author: David Li <[email protected]>
AuthorDate: Fri Jan 17 01:22:23 2025 -0500
docs: remove crosslinking to Arrow Javadocs (#2455)
Fixes #2453.
---
ci/scripts/docs_build.sh | 2 +-
java/pom.xml | 7 ++++---
2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/ci/scripts/docs_build.sh b/ci/scripts/docs_build.sh
index e3a28d644..be2adecbb 100755
--- a/ci/scripts/docs_build.sh
+++ b/ci/scripts/docs_build.sh
@@ -26,7 +26,7 @@ main() {
popd
pushd "$source_dir/java"
- mvn site
+ mvn --no-transfer-progress site
popd
pushd "$source_dir/docs"
diff --git a/java/pom.xml b/java/pom.xml
index 9058e28dc..02149c7b9 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -239,9 +239,10 @@
<configuration>
<!-- Ignore missing @return, @throws -->
<doclint>all,-missing</doclint>
- <links>
- <link>https://arrow.apache.org/docs/java/reference/</link>
- </links>
+ <!-- TODO(apache/arrow-adbc#2454): upstream stopped building this -->
+ <!-- <links> -->
+ <!-- <link>https://arrow.apache.org/docs/java/reference/</link> -->
+ <!-- </links> -->
<!-- Stop it from trying to document the tests -->
<show>public</show>
</configuration>