Commits


Raúl Cumplido authored and GitHub committed 081b70bafea
MINOR: [Java][CI] Fix grep for new nightlies versioning (#14166) I've noticed that the latest Java nightlies where not uploaded https://nightlies.apache.org/arrow/java/org/apache/arrow/arrow-c-data/. I missed to update the grep on this PR: https://github.com/apache/arrow/pull/14135 I have now tested locally the bash script to validate the repo structure will now be generated correctly: ``` repo └── org └── apache └── arrow ├── arrow-algorithm │ ├── 10.0.0-SNAPSHOT │ │ ├── arrow-algorithm-10.0.0-SNAPSHOT.jar │ │ ├── arrow-algorithm-10.0.0-SNAPSHOT-javadoc.jar │ │ ├── arrow-algorithm-10.0.0-SNAPSHOT.pom │ │ ├── arrow-algorithm-10.0.0-SNAPSHOT-sources.jar │ │ └── arrow-algorithm-10.0.0-SNAPSHOT-tests.jar │ └── 2022-09-18 │ ├── arrow-algorithm-10.0.0-SNAPSHOT.jar │ ├── arrow-algorithm-10.0.0-SNAPSHOT-javadoc.jar │ ├── arrow-algorithm-10.0.0-SNAPSHOT.pom │ ├── arrow-algorithm-10.0.0-SNAPSHOT-sources.jar │ └── arrow-algorithm-10.0.0-SNAPSHOT-tests.jar ├── arrow-avro │ ├── 10.0.0-SNAPSHOT │ │ ├── arrow-avro-10.0.0-SNAPSHOT.jar │ │ ├── arrow-avro-10.0.0-SNAPSHOT-javadoc.jar │ │ ├── arrow-avro-10.0.0-SNAPSHOT.pom │ │ ├── arrow-avro-10.0.0-SNAPSHOT-sources.jar │ │ └── arrow-avro-10.0.0-SNAPSHOT-tests.jar │ └── 2022-09-18 │ ├── arrow-avro-10.0.0-SNAPSHOT.jar │ ├── arrow-avro-10.0.0-SNAPSHOT-javadoc.jar │ ├── arrow-avro-10.0.0-SNAPSHOT.pom │ ├── arrow-avro-10.0.0-SNAPSHOT-sources.jar │ └── arrow-avro-10.0.0-SNAPSHOT-tests.jar ... ``` Authored-by: Raúl Cumplido <raulcumplido@gmail.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>