Skip to content

Commit

Permalink
Fix databricks build since Arrow code added (NVIDIA#1634)
Browse files Browse the repository at this point in the history
* Add explicit Arrow dep for databricks

* remove uneeded

* fix tabs

* sign off

Signed-off-by: Thomas Graves <tgraves@nvidia.com>

* fix copyright

Signed-off-by: Thomas Graves <tgraves@nvidia.com>
  • Loading branch information
tgravescs authored Jan 30, 2021
1 parent 8ed16d8 commit 37327c8
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions shims/spark301db/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2020, NVIDIA CORPORATION.
Copyright (c) 2020-2021, NVIDIA CORPORATION.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -23,7 +23,7 @@
<groupId>com.nvidia</groupId>
<artifactId>rapids-4-spark-shims_2.12</artifactId>
<version>0.4.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>com.nvidia</groupId>
<artifactId>rapids-4-spark-shims-spark301-databricks_2.12</artifactId>
Expand Down Expand Up @@ -74,6 +74,7 @@
<properties>
<parquet.version>1.10.1</parquet.version>
<spark301db.version>3.0.1-databricks</spark301db.version>
<arrow.version>0.15.1</arrow.version>
</properties>

<dependencies>
Expand All @@ -82,23 +83,29 @@
<artifactId>rapids-4-spark-shims-spark301_${scala.binary.version}</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-vector</artifactId>
<version>${arrow.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-sql_${scala.binary.version}</artifactId>
<version>${spark301db.version}</version>
<scope>provided</scope>
<version>${spark301db.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-catalyst_${scala.binary.version}</artifactId>
<version>${spark301db.version}</version>
<scope>provided</scope>
<version>${spark301db.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-core_${scala.binary.version}</artifactId>
<version>${spark301db.version}</version>
<scope>provided</scope>
<version>${spark301db.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
Expand Down

0 comments on commit 37327c8

Please sign in to comment.