You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "David Dali Susanibar Arce (Jira)" <ji...@apache.org> on 2022/03/07 17:57:00 UTC

[jira] [Updated] (ARROW-15865) [Java][Doc]: Configure local maven to consume github arrow nightly assets

     [ https://issues.apache.org/jira/browse/ARROW-15865?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

David Dali Susanibar Arce updated ARROW-15865:
----------------------------------------------
    Labels: issue  (was: )

> [Java][Doc]: Configure local maven to consume github arrow nightly 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
>              Labels: issue
>
> 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)