Skip to content

Commit

Permalink
[Debezium Server Name Mapper] Use Jakarta cdi-api
Browse files Browse the repository at this point in the history
  • Loading branch information
Naros committed Feb 9, 2024
1 parent 30331f2 commit 0bc0a33
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions debezium-server-name-mapper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
<artifactId>debezium-connector-postgres</artifactId>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>2.0</version>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-api</artifactId>
<version>4.0.1</version>
</dependency>
</dependencies>
<build>
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 0bc0a33

Please sign in to comment.