Skip to content

Commit cb0a7f3

Browse files
committed
5409 Fix dependency declarations
1 parent cdddbd2 commit cb0a7f3

File tree

3 files changed

+6
-24
lines changed

3 files changed

+6
-24
lines changed

java/arrow/pom.xml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<artifactId>arrow</artifactId>
2828

2929
<dependencies>
30-
<!-- Arrow dependencies -->
30+
<!-- Arrow dependencies -->
3131
<dependency>
3232
<groupId>org.apache.arrow</groupId>
3333
<artifactId>arrow-memory-unsafe</artifactId>
@@ -37,10 +37,6 @@
3737
<groupId>org.apache.arrow</groupId>
3838
<artifactId>arrow-vector</artifactId>
3939
</dependency>
40-
<dependency>
41-
<groupId>org.apache.arrow</groupId>
42-
<artifactId>arrow-algorithm</artifactId>
43-
</dependency>
4440
<!-- Sleeper dependencies -->
4541
<dependency>
4642
<groupId>sleeper</groupId>

java/ingest/ingest-runner/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@
4848
<groupId>software.amazon.awssdk</groupId>
4949
<artifactId>sqs</artifactId>
5050
</dependency>
51+
<!-- Arrow dependencies -->
52+
<dependency>
53+
<groupId>org.apache.arrow</groupId>
54+
<artifactId>arrow-algorithm</artifactId>
55+
</dependency>
5156
<!-- Sleeper dependencies -->
5257
<dependency>
5358
<groupId>sleeper</groupId>

java/trino/pom.xml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -94,25 +94,6 @@
9494
</exclusion>
9595
</exclusions>
9696
</dependency>
97-
<dependency>
98-
<groupId>sleeper</groupId>
99-
<artifactId>arrow</artifactId>
100-
<version>${project.parent.version}</version>
101-
<exclusions>
102-
<exclusion>
103-
<groupId>org.slf4j</groupId>
104-
<artifactId>slf4j-log4j12</artifactId>
105-
</exclusion>
106-
<exclusion>
107-
<groupId>log4j</groupId>
108-
<artifactId>log4j</artifactId>
109-
</exclusion>
110-
<exclusion>
111-
<groupId>javax.ws.rs</groupId>
112-
<artifactId>jsr311-api</artifactId>
113-
</exclusion>
114-
</exclusions>
115-
</dependency>
11697
<!-- This dependency is only required when the AWS client is explicitly created
11798
<dependency>
11899
<groupId>software.amazon.awssdk</groupId>

0 commit comments

Comments
 (0)