Skip to content

Commit 895318e

Browse files
committed
Fix dependency related issues
1 parent c66a844 commit 895318e

File tree

4 files changed

+23
-0
lines changed

4 files changed

+23
-0
lines changed

kafka-connect-http-infra/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>kafka-connect-http-infra</artifactId>
13+
<name>Kafka Connect HTTP Infrastructure</name>
1314

1415
<dependencies>
1516
<dependency>

kafka-connect-http-test/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@
1717
<groupId>org.projectlombok</groupId>
1818
<artifactId>lombok</artifactId>
1919
</dependency>
20+
<dependency>
21+
<groupId>org.slf4j</groupId>
22+
<artifactId>slf4j-api</artifactId>
23+
</dependency>
24+
<dependency>
25+
<groupId>ch.qos.logback</groupId>
26+
<artifactId>logback-core</artifactId>
27+
</dependency>
2028
<dependency>
2129
<groupId>ch.qos.logback</groupId>
2230
<artifactId>logback-classic</artifactId>

kafka-connect-http/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,17 @@
1515
<dependency>
1616
<groupId>org.projectlombok</groupId>
1717
<artifactId>lombok</artifactId>
18+
<scope>provided</scope>
1819
</dependency>
1920
<dependency>
2021
<groupId>org.apache.kafka</groupId>
2122
<artifactId>connect-api</artifactId>
23+
<scope>provided</scope>
2224
</dependency>
2325
<dependency>
2426
<groupId>ch.qos.logback</groupId>
2527
<artifactId>logback-classic</artifactId>
28+
<scope>provided</scope>
2629
</dependency>
2730

2831
<dependency>
@@ -53,22 +56,27 @@
5356
<dependency>
5457
<groupId>org.junit.jupiter</groupId>
5558
<artifactId>junit-jupiter-engine</artifactId>
59+
<scope>test</scope>
5660
</dependency>
5761
<dependency>
5862
<groupId>org.junit.jupiter</groupId>
5963
<artifactId>junit-jupiter-api</artifactId>
64+
<scope>test</scope>
6065
</dependency>
6166
<dependency>
6267
<groupId>org.mockito</groupId>
6368
<artifactId>mockito-junit-jupiter</artifactId>
69+
<scope>test</scope>
6470
</dependency>
6571
<dependency>
6672
<groupId>org.assertj</groupId>
6773
<artifactId>assertj-core</artifactId>
74+
<scope>test</scope>
6875
</dependency>
6976
<dependency>
7077
<groupId>com.google.guava</groupId>
7178
<artifactId>guava</artifactId>
79+
<scope>test</scope>
7280
</dependency>
7381
</dependencies>
7482

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,12 @@
180180
<groupId>org.testcontainers</groupId>
181181
<artifactId>testcontainers</artifactId>
182182
<version>${testcontainers.version}</version>
183+
<exclusions>
184+
<exclusion>
185+
<groupId>junit</groupId>
186+
<artifactId>junit4</artifactId>
187+
</exclusion>
188+
</exclusions>
183189
</dependency>
184190
<dependency>
185191
<groupId>org.testcontainers</groupId>

0 commit comments

Comments
 (0)