[ 
https://issues.apache.org/jira/browse/ARROW-15486?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17483814#comment-17483814
 ] 

David Dali Susanibar Arce commented on ARROW-15486:
---------------------------------------------------

Hi Team, 

I check 
[https://repository.apache.org/content/repositories/staging/org/apache/arrow/] 
for .jar arrow library and any of these appear on that site

When we are planning to test the packages in theory there are tested by maven 
modules dependency between theirs. Only top layer module are not testing, for 
these layer will be needed to create a `demo` project that only download jar 
dependencies.

For this purpose to I could test the java jar packages could you help me with 
information needed for maven settings.xml to I could execute:

 
{code:java}
mvn -Parrowrc clean install {code}
 

settings.xml

 
{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";>
  <servers>
    <server>
      <username>xxx</username>
      <password>yyy</password>
      <id>snapshots</id>
    </server>
  </servers>
  <profiles>
    <profile>
      <repositories>
        <repository>
          <snapshots />
          <id>snapshots</id>
          <name>libs-snapshot</name>
          <url>uuu</url>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
          <snapshots />
          <id>snapshots</id>
          <name>plugins-release</name>
          <url>uuu</url>
        </pluginRepository>
      </pluginRepositories>
      <id>arrowrc</id>
    </profile>
  </profiles>
  <activeProfiles>
    <activeProfile>arrowrc</activeProfile>
  </activeProfiles>
</settings> {code}
 

According to these PR [https://github.com/apache/arrow/pull/11617/files] .jar 
will be uploaded to: [8]: 
https://apache.jfrog.io/artifactory/arrow/java-rc/#\{@release_version}-rc0

 

[~kou]  

 

 

> [Relase][Java] Verify staged maven artifacts
> --------------------------------------------
>
>                 Key: ARROW-15486
>                 URL: https://issues.apache.org/jira/browse/ARROW-15486
>             Project: Apache Arrow
>          Issue Type: Improvement
>            Reporter: Krisztian Szucs
>            Priority: Major
>
> We have two tests right now:
> 1. Execute {{mvn test}} from the source tarball's java directory testing the 
> source 
> https://github.com/apache/arrow/blob/master/dev/release/verify-release-candidate.sh#L278
> 2. Verify the checksums and signatures of the uploaded maven artifacts 
> https://github.com/apache/arrow/blob/master/dev/release/verify-release-candidate.sh#L766
> But we don't actually *test* the packages. We should add that to the 
> verification scripts, since 7.0 is going to be the first release shipping the 
> jars with bundled JNI libraries.
> cc [~kou] [~anthonylouis]



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

Reply via email to