Skip to content

Commit

Permalink
Update dist pom, align with Debezium (#461)
Browse files Browse the repository at this point in the history
  • Loading branch information
ismailsimsek authored Dec 22, 2024
1 parent ef4c9dc commit 8354918
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 48 deletions.
62 changes: 27 additions & 35 deletions debezium-server-iceberg-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<version>${quarkus.version.runtime}</version>
<configuration>
<systemProperties>
<quarkus.kubernetes-config.secrets.enabled>true</quarkus.kubernetes-config.secrets.enabled>
<!-- Required in order to support SRV protocol in MongoDB connector (due to java drive) -->
<quarkus.naming.enable-jndi>true</quarkus.naming.enable-jndi>
</systemProperties>
</configuration>
<executions>
<execution>
<goals>
Expand All @@ -68,6 +75,14 @@
<activeByDefault>false</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>io.prometheus.jmx</groupId>
<artifactId>jmx_prometheus_javaagent</artifactId>
</dependency>
<dependency>
<groupId>io.debezium</groupId>
<artifactId>debezium-connector-mariadb</artifactId>
</dependency>
<dependency>
<groupId>io.debezium</groupId>
<artifactId>debezium-connector-mysql</artifactId>
Expand All @@ -94,49 +109,26 @@
</dependency>
<dependency>
<groupId>io.debezium</groupId>
<artifactId>debezium-server-core</artifactId>
<artifactId>debezium-scripting</artifactId>
</dependency>
<!-- <dependency>-->
<!-- <groupId>io.debezium</groupId>-->
<!-- <artifactId>debezium-server-kinesis</artifactId>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>io.debezium</groupId>-->
<!-- <artifactId>debezium-server-pubsub</artifactId>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>io.debezium</groupId>-->
<!-- <artifactId>debezium-server-pulsar</artifactId>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>io.debezium</groupId>-->
<!-- <artifactId>debezium-server-eventhubs</artifactId>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>io.debezium</groupId>-->
<!-- <artifactId>debezium-server-redis</artifactId>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>io.debezium</groupId>-->
<!-- <artifactId>debezium-server-kafka</artifactId>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>io.debezium</groupId>-->
<!-- <artifactId>debezium-server-pravega</artifactId>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>io.debezium</groupId>-->
<!-- <artifactId>debezium-server-nats-streaming</artifactId>-->
<!-- </dependency>-->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-logging-json</artifactId>
<groupId>io.debezium</groupId>
<artifactId>debezium-scripting-languages</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>io.debezium</groupId>
<artifactId>debezium-server-core</artifactId>
</dependency>
<dependency>
<groupId>io.debezium</groupId>
<artifactId>debezium-server-iceberg-sink</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-logging-json</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
13 changes: 0 additions & 13 deletions debezium-server-iceberg-sink/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,6 @@
<groupId>io.debezium</groupId>
<artifactId>debezium-scripting</artifactId>
</dependency>
<dependency>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy</artifactId>
</dependency>
<dependency>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy-json</artifactId>
</dependency>
<dependency>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy-jsr223</artifactId>
</dependency>

<!-- Iceberg -->
<dependency>
<groupId>org.apache.iceberg</groupId>
Expand Down

0 comments on commit 8354918

Please sign in to comment.