Skip to content

Commit

Permalink
Removed test scope from arrow-memory-netty so ci jobs work
Browse files Browse the repository at this point in the history
  • Loading branch information
drewfarris committed Jan 9, 2025
1 parent 4ddbc49 commit 33ef510
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,13 @@
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-core</artifactId>
<version>${dep.arrow.version}</version>
<exclusions>
<!-- conflicts with guava's dependency, which is an older version of the checker framework -->
<exclusion>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
Expand Down Expand Up @@ -415,13 +422,12 @@
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-core</artifactId>
<exclusions>
<!-- conflicts with guava's dependency, which is an older version of the checker framework -->
<exclusion>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-netty</artifactId>
<!-- consumers of emissary can use either arrow-memory-netty or arrow-memory-unsafe to provide an allocator -->
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down Expand Up @@ -545,13 +551,6 @@
<artifactId>error_prone_annotations</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-netty</artifactId>
<scope>test</scope>
<!-- consumers of emissary can use either arrow-memory-netty or arrow-memory-unsafe to provide an allocator -->
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
<artifactId>jersey-test-framework-provider-jetty</artifactId>
Expand Down

0 comments on commit 33ef510

Please sign in to comment.