[
https://issues.apache.org/jira/browse/ARROW-15865?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17518550#comment-17518550
]
David Dali Susanibar Arce commented on ARROW-15865:
---------------------------------------------------
I am going to close this ticket to review later as that currently we have a
workaround about how to use arrow nightly at
https://arrow.apache.org/docs/dev/java/install.html#installing-nightly-packages
> [Java][Doc] Document how to configure Maven to consume GitHub release assets
> ----------------------------------------------------------------------------
>
> Key: ARROW-15865
> URL: https://issues.apache.org/jira/browse/ARROW-15865
> Project: Apache Arrow
> Issue Type: Sub-task
> Components: Java
> Reporter: David Dali Susanibar Arce
> Assignee: David Dali Susanibar Arce
> Priority: Minor
>
> Current maven configuration to integrate with github assets repository:
> {code:java}
> <?xml version="1.0" encoding="UTF-8"?>
> <settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0
> http://maven.apache.org/xsd/settings-1.1.0.xsd"
> xmlns="http://maven.apache.org/SETTINGS/1.1.0"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
> <profiles>
> <profile>
> <repositories>
> <repository>
> <id>staged</id>
> <name>staged-releases</name>
>
> <url>https://repository.apache.org/content/repositories/staging/</url>
> <releases>
> <enabled>true</enabled>
> </releases>
> <snapshots>
> <enabled>true</enabled>
> <updatePolicy>never</updatePolicy>
> </snapshots>
> </repository>
> </repositories>
> <id>arrowrc</id>
> </profile>
> <profile>
> <repositories>
> <repository>
> <id>staged</id>
> <name>staged-releases</name>
>
> <url>https://github.com/ursacomputing/crossbow/releases/tag/release-7.0.0-rc10-0-github-java-jars</url>
> <releases>
> <enabled>true</enabled>
> </releases>
> <snapshots>
> <enabled>true</enabled>
> </snapshots>
> </repository>
> </repositories>
> <id>arrownightly</id>
> </profile>
> </profiles>
> </settings> {code}
> Run with "mvn -Parrownightly clean install" its download files to .m2 local
> repository but as a invalid jar/pom files
> Define a way about how to integrate maven with current github assets
> repository to download assets properly without errors
--
This message was sent by Atlassian Jira
(v8.20.1#820001)