Skip to content

Commit

Permalink
[Debezium Server Name Mapper] Switch to Debezium 2.3.2.Final, update …
Browse files Browse the repository at this point in the history
…deps

* Java 11 minimum
* Update to Debezium 2.3.2.Final
* Update to Quarkus 3.2.3.Final
* Update to Kafka 3.5.0
  • Loading branch information
Naros committed Aug 4, 2023
1 parent 467ce9f commit 8901c49
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion debezium-server-name-mapper/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Both Apache Pulsar and the source database are deployed via Docker Compose file.
From terminal start the source database and the sink system:

```
$ export DEBEZIUM_VERSION=2.1
$ export DEBEZIUM_VERSION=2.3
$ docker compose up
```

Expand Down
13 changes: 7 additions & 6 deletions debezium-server-name-mapper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>

<version.debezium>2.1.3.Final</version.debezium>
<version.debezium.tag>2.1</version.debezium.tag>
<version.quarkus>2.16.5.Final</version.quarkus>
<version.debezium>2.3.2.Final</version.debezium>
<version.debezium.tag>2.3</version.debezium.tag>
<version.quarkus>3.2.3.Final</version.quarkus>
<version.jandex>1.2.3</version.jandex>
<version.kafka>3.5.0</version.kafka>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -41,7 +42,7 @@
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>3.3.1</version>
<version>${version.kafka}</version>
</dependency>
<dependency>
<groupId>io.debezium</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/
package io.debezium.example.server.mapper;

import javax.enterprise.context.Dependent;
import jakarta.enterprise.context.Dependent;

import org.eclipse.microprofile.config.inject.ConfigProperty;

Expand Down

0 comments on commit 8901c49

Please sign in to comment.