Skip to content

Commit 5e48738

Browse files
authored
Remove unused dependencies from Kinesis source deaggregation (#106)
1 parent a4d933c commit 5e48738

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

java/KinesisSourceDeaggregation/flink-app/pom.xml

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,25 @@
8282
<groupId>software.amazon.kinesis</groupId>
8383
<artifactId>amazon-kinesis-client</artifactId>
8484
<version>${kinesis.client.version}</version>
85-
</dependency>
86-
<dependency>
87-
<groupId>software.amazon.awssdk</groupId>
88-
<artifactId>retries</artifactId>
85+
<!-- Exclude most of the transitive dependencies in KCL because they are not really needed -->
86+
<exclusions>
87+
<exclusion>
88+
<groupId>software.amazon.awssdk</groupId>
89+
<artifactId>*</artifactId>
90+
</exclusion>
91+
<exclusion>
92+
<groupId>software.amazon.glue</groupId>
93+
<artifactId>*</artifactId>
94+
</exclusion>
95+
<exclusion>
96+
<groupId>io.reactivex.rxjava3</groupId>
97+
<artifactId>rxjava</artifactId>
98+
</exclusion>
99+
<exclusion>
100+
<groupId>com.google.guava</groupId>
101+
<artifactId>*</artifactId>
102+
</exclusion>
103+
</exclusions>
89104
</dependency>
90105

91106
<!-- Connectors and Formats -->

0 commit comments

Comments
 (0)