Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Commit 5cdf42c

Browse files
deps: update arrow-vector to v1 (#551)
* deps: update arrow-vector to v1 * add arrow-memory-netty as a dep * used property to manage arrow version
1 parent e8dea03 commit 5cdf42c

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

samples/install-without-bom/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<maven.compiler.target>1.8</maven.compiler.target>
2222
<maven.compiler.source>1.8</maven.compiler.source>
2323
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24+
<arrow.version>1.0.1</arrow.version>
2425
</properties>
2526

2627

@@ -42,7 +43,12 @@
4243
<dependency>
4344
<groupId>org.apache.arrow</groupId>
4445
<artifactId>arrow-vector</artifactId>
45-
<version>0.17.1</version>
46+
<version>${arrow.version}</version>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.apache.arrow</groupId>
50+
<artifactId>arrow-memory-netty</artifactId>
51+
<version>${arrow.version}</version>
4652
</dependency>
4753

4854
<dependency>

samples/snapshot/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<maven.compiler.target>1.8</maven.compiler.target>
2222
<maven.compiler.source>1.8</maven.compiler.source>
2323
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24+
<arrow.version>1.0.1</arrow.version>
2425
</properties>
2526

2627
<dependencies>
@@ -41,7 +42,12 @@
4142
<dependency>
4243
<groupId>org.apache.arrow</groupId>
4344
<artifactId>arrow-vector</artifactId>
44-
<version>0.17.1</version>
45+
<version>${arrow.version}</version>
46+
</dependency>
47+
<dependency>
48+
<groupId>org.apache.arrow</groupId>
49+
<artifactId>arrow-memory-netty</artifactId>
50+
<version>${arrow.version}</version>
4551
</dependency>
4652

4753
<dependency>

samples/snippets/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<maven.compiler.target>1.8</maven.compiler.target>
2222
<maven.compiler.source>1.8</maven.compiler.source>
2323
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24+
<arrow.version>1.0.1</arrow.version>
2425
</properties>
2526

2627

@@ -53,7 +54,12 @@
5354
<dependency>
5455
<groupId>org.apache.arrow</groupId>
5556
<artifactId>arrow-vector</artifactId>
56-
<version>0.17.1</version>
57+
<version>${arrow.version}</version>
58+
</dependency>
59+
<dependency>
60+
<groupId>org.apache.arrow</groupId>
61+
<artifactId>arrow-memory-netty</artifactId>
62+
<version>${arrow.version}</version>
5763
</dependency>
5864

5965
<!-- Test Dependencies -->

0 commit comments

Comments
 (0)