Skip to content

Commit

Permalink
deps: update arrow-vector to v1 (#551)
Browse files Browse the repository at this point in the history
* deps: update arrow-vector to v1

* add arrow-memory-netty as a dep

* used property to manage arrow version
  • Loading branch information
stephaniewang526 committed Sep 22, 2020
1 parent e8dea03 commit 5cdf42c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
8 changes: 7 additions & 1 deletion samples/install-without-bom/pom.xml
Expand Up @@ -21,6 +21,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<arrow.version>1.0.1</arrow.version>
</properties>


Expand All @@ -42,7 +43,12 @@
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-vector</artifactId>
<version>0.17.1</version>
<version>${arrow.version}</version>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-netty</artifactId>
<version>${arrow.version}</version>
</dependency>

<dependency>
Expand Down
8 changes: 7 additions & 1 deletion samples/snapshot/pom.xml
Expand Up @@ -21,6 +21,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<arrow.version>1.0.1</arrow.version>
</properties>

<dependencies>
Expand All @@ -41,7 +42,12 @@
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-vector</artifactId>
<version>0.17.1</version>
<version>${arrow.version}</version>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-netty</artifactId>
<version>${arrow.version}</version>
</dependency>

<dependency>
Expand Down
8 changes: 7 additions & 1 deletion samples/snippets/pom.xml
Expand Up @@ -21,6 +21,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<arrow.version>1.0.1</arrow.version>
</properties>


Expand Down Expand Up @@ -53,7 +54,12 @@
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-vector</artifactId>
<version>0.17.1</version>
<version>${arrow.version}</version>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-netty</artifactId>
<version>${arrow.version}</version>
</dependency>

<!-- Test Dependencies -->
Expand Down

0 comments on commit 5cdf42c

Please sign in to comment.