lidavidm commented on code in PR #13352: URL: https://github.com/apache/arrow/pull/13352#discussion_r893586344
########## docs/source/java/install.rst: ########## @@ -143,8 +143,40 @@ Installing Nightly Packages Arrow nightly builds are posted on the mailing list at `[email protected]`_. The artifacts are uploaded to GitHub. For example, for 2022/03/01, they can be found at `Github Nightly`_. -Maven cannot directly use the artifacts from GitHub. -Instead, install them to the local Maven repository: +Installing from Apache Nightlies +******************************** + +Steps involved to download Java artifacts from Apache Nightlies Repository: + +1. Once you have the Java nightly library needed (i.e. arrow-memory), please go to https://nightlies.apache.org/arrow/java/org/apache/arrow/arrow-memory/ and see what version are available (i.e. 9.0.0.dev191), this is alligned with Arrow nightly builds. +2. Add Apache Nightlies Repository to the Maven/Gradle project. + +.. code-block:: xml + + <properties> + <arrow.version>9.0.0.dev191</arrow.version> + </properties> + ... + <repositories> + <repository> + <id>arrow-apache-nightlies</id> + <url>https://nightlies.apache.org/arrow/java</url> + </repository> + </repositories> + ... + <dependencies> + <dependency> + <groupId>org.apache.arrow</groupId> + <artifactId>arrow-vector</artifactId> + <version>${arrow.version}</version> + </dependency> + </dependencies> + ... + +Installing Manually +******************* + +Steps involved to install to local Maven repository manually: Review Comment: ```suggestion ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
