plugin-debezium-postgres
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.kestra.plugin</groupId> <artifactId>plugin-debezium-postgres</artifactId> <version>0.23.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>io.kestra.plugin</groupId> <artifactId>plugin-debezium-postgres</artifactId> <version>0.23.0</version> <developers> <developer> <id>tchiotludo</id> <name>Ludovic Dehon</name> </developer> </developers> <dependencyManagement> <dependencies> <dependency> <groupId>io.kestra</groupId> <artifactId>platform</artifactId> <version>[0.23,0.24)</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.16</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>io.debezium</groupId> <artifactId>debezium-connector-postgres</artifactId> <version>2.6.1.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk18on</artifactId> <version>1.80</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk18on</artifactId> <version>1.80</version> <scope>compile</scope> </dependency> <dependency> <groupId>name.neuhalfen.projects.crypto.bouncycastle.openpgp</groupId> <artifactId>bouncy-gpg</artifactId> <version>2.3.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.kestra.plugin</groupId> <artifactId>plugin-debezium</artifactId> <version>0.23.0</version> <scope>compile</scope> </dependency> </dependencies> <url>https://github.com/kestra-io/plugin-debezium</url> <scm> <url>https://github.com/kestra-io/plugin-debezium</url> <connection>scm:git:git://github.com/kestra-io/plugin-debezium</connection> <developerConnection>scm:git:git://github.com/kestra-io/plugin-debezium</developerConnection> </scm> <licenses> <license> <name>Apache License 2.0</name> <url>https://raw.githubusercontent.com/kestra-io/plugin-debezium/HEAD/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <system>GitHub</system> <url>https://github.com/kestra-io/plugin-debezium/issues</url> </issueManagement> <name>plugin-debezium-postgres</name> <description>Capture PostgreSQL database changes using Debezium integration. Note that this plugin is intended for advanced use cases and requires a proper Debezium setup as explained e.g. in [the following blueprint](https://kestra.io/blueprints/194-use-debezium-to-trigger-a-flow-whenever-new-entries-hit-a-postgres-database-then-send-notification-to-slack-and-process-data-in-python). For simple use cases, consider using the [JDBC-based PostgreSQL plugin](https://kestra.io/plugins/plugin-jdbc-postgres) instead.</description> </project>