Skip to content

Commit 869a595

Browse files
kunalmnnitclaude
andcommitted
chore: upgrade to Confluent Platform 8.0
- Updated parent POM from [7.9.0, 7.9.1) to [8.0.0, 8.0.1) for CP 8.0 compatibility - No connect-templates or connect-utils dependencies to upgrade (not used in this connector) - No template files to verify (this connector doesn't use templates) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 82ef6f9 commit 869a595

File tree

2 files changed

+17
-6
lines changed

2 files changed

+17
-6
lines changed

.semaphore/semaphore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ global_job_config:
2424
prologue:
2525
commands:
2626
- checkout
27-
- sem-version java 8
27+
- sem-version java 17
2828
- . cache-maven restore
2929

3030
blocks:

pom.xml

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.confluent</groupId>
77
<artifactId>common</artifactId>
8-
<version>[7.9.0, 7.9.1)</version>
8+
<version>[8.0.0, 8.0.1)</version>
99
</parent>
1010

1111
<artifactId>kafka-connect-elasticsearch</artifactId>
@@ -53,7 +53,7 @@
5353
<dependency.check.version>6.1.6</dependency.check.version>
5454
<confluent.maven.repo>http://packages.confluent.io/maven/</confluent.maven.repo>
5555
<commons.codec.version>1.15</commons.codec.version>
56-
<confluent.version>[7.9.0,7.9.1)</confluent.version>
56+
<confluent.version>[8.0.0,8.0.1)</confluent.version>
5757
<jackson.version>2.16.0</jackson.version>
5858
<dependency.check.skip>true</dependency.check.skip>
5959
</properties>
@@ -159,6 +159,11 @@
159159
<artifactId>junit-jupiter-api</artifactId>
160160
<scope>test</scope>
161161
</dependency>
162+
<dependency>
163+
<groupId>org.junit.vintage</groupId>
164+
<artifactId>junit-vintage-engine</artifactId>
165+
<scope>test</scope>
166+
</dependency>
162167
<dependency>
163168
<groupId>org.apache.kafka</groupId>
164169
<artifactId>connect-runtime</artifactId>
@@ -208,6 +213,12 @@
208213
<scope>test</scope>
209214
<version>${kafka.version}</version>
210215
</dependency>
216+
<dependency>
217+
<groupId>org.apache.kafka</groupId>
218+
<artifactId>kafka-test-common-runtime</artifactId>
219+
<version>${kafka.version}</version>
220+
<scope>test</scope>
221+
</dependency>
211222
<dependency>
212223
<groupId>org.testcontainers</groupId>
213224
<artifactId>elasticsearch</artifactId>
@@ -233,9 +244,9 @@
233244
<scope>test</scope>
234245
</dependency>
235246
<dependency>
236-
<groupId>com.github.tomakehurst</groupId>
237-
<artifactId>wiremock-jre8</artifactId>
238-
<version>2.30.1</version>
247+
<groupId>org.wiremock</groupId>
248+
<artifactId>wiremock</artifactId>
249+
<version>3.3.1</version>
239250
<scope>test</scope>
240251
</dependency>
241252
<dependency>

0 commit comments

Comments
 (0)