Skip to content

Commit

Permalink
Exclude all arrow dependencies from Spark
Browse files Browse the repository at this point in the history
  • Loading branch information
viirya committed May 9, 2024
1 parent 29c89bf commit 7740240
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,11 @@ under the License.
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>

<exclusion>
<groupId>org.apache.arrow</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -136,7 +141,7 @@ under the License.
<!-- Comet uses arrow-memory-unsafe -->
<exclusion>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-netty</artifactId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
Expand Down Expand Up @@ -256,7 +261,7 @@ under the License.
<!-- We are using arrow-memory-unsafe -->
<exclusion>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-netty</artifactId>
<artifactId>*</artifactId>
</exclusion>

<!-- We're using "org.slf4j:jcl-over-slf4j" -->
Expand All @@ -282,7 +287,7 @@ under the License.
<!-- We are using arrow-memory-unsafe -->
<exclusion>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-netty</artifactId>
<artifactId>*</artifactId>
</exclusion>

<!-- We're using "org.slf4j:jcl-over-slf4j" -->
Expand Down Expand Up @@ -322,6 +327,11 @@ under the License.
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>

<exclusion>
<groupId>org.apache.arrow</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -338,6 +348,10 @@ under the License.
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.arrow</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down Expand Up @@ -398,6 +412,11 @@ under the License.
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>

<exclusion>
<groupId>org.apache.arrow</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>

Expand Down

0 comments on commit 7740240

Please sign in to comment.