Skip to content

Commit

Permalink
Disable Spark 3.2 shim by default (NVIDIA#2135)
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Lowe <[email protected]>
  • Loading branch information
jlowe authored Apr 15, 2021
1 parent bf3a4c6 commit 9355012
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
17 changes: 11 additions & 6 deletions shims/aggregator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,23 @@
</dependency>
</dependencies>
</profile>
<profile>
<id>spark320</id>
<dependencies>
<dependency>
<groupId>com.nvidia</groupId>
<artifactId>rapids-4-spark-shims-spark320_${scala.binary.version}</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>snapshot-shims</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>com.nvidia</groupId>
<artifactId>rapids-4-spark-shims-spark320_${scala.binary.version}</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.nvidia</groupId>
<artifactId>rapids-4-spark-shims-spark303_${scala.binary.version}</artifactId>
Expand Down
7 changes: 6 additions & 1 deletion shims/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@
<module>spark301db</module>
</modules>
</profile>
<profile>
<id>spark320</id>
<modules>
<module>spark320</module>
</modules>
</profile>
<profile>
<id>snapshot-shims</id>
<activation>
Expand All @@ -47,7 +53,6 @@
<modules>
<module>spark303</module>
<module>spark312</module>
<module>spark320</module>
</modules>
</profile>
</profiles>
Expand Down

0 comments on commit 9355012

Please sign in to comment.