Skip to content

Commit

Permalink
[Debezium Server Name Mapper] Switch to Debezium 2.5, Quarkus to 3.0.…
Browse files Browse the repository at this point in the history
…0.Final
  • Loading branch information
ani-sha committed Feb 7, 2024
1 parent 440d955 commit 30331f2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 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.5
$ docker compose up
```

Expand Down
15 changes: 10 additions & 5 deletions debezium-server-name-mapper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@

<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.5.0.Final</version.debezium>
<version.debezium.tag>2.5</version.debezium.tag>
<version.quarkus>3.2.3.Final</version.quarkus>
<version.jandex>1.2.3</version.jandex>
</properties>

Expand Down Expand Up @@ -51,6 +51,11 @@
<groupId>io.debezium</groupId>
<artifactId>debezium-connector-postgres</artifactId>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>2.0</version>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down

0 comments on commit 30331f2

Please sign in to comment.