Skip to content

Commit

Permalink
Use parent pom
Browse files Browse the repository at this point in the history
  • Loading branch information
ismailsimsek committed Dec 18, 2024
1 parent 3f39c46 commit 352cbd4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 21 deletions.
2 changes: 1 addition & 1 deletion debezium-server-iceberg-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<version>${version.quarkus}</version>
<version>${quarkus.version.runtime}</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion debezium-server-iceberg-sink/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<version>${version.quarkus}</version>
<version>${quarkus.version.runtime}</version>
<executions>
<execution>
<goals>
Expand Down
29 changes: 10 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,22 @@

<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>io.debezium</groupId>
<artifactId>debezium-build-parent</artifactId>
<version>3.0.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>io.debezium</groupId>
<artifactId>debezium-server-iceberg</artifactId>
<name>Debezium Server Parent</name>
<name>Debezium Server Iceberg</name>
<version>${revision}</version>
<packaging>pom</packaging>

<properties>
<revision>0.4.0-SNAPSHOT</revision>
<!-- NOTE: this is override by release process using CLI argument -->
<revision>0.0.1-SNAPSHOT</revision>
<!-- Debezium Version! NOTE: keep same as parent.version above! -->
<version.debezium>3.0.4.Final</version.debezium>

<!-- Instruct the build to use only UTF-8 encoding for source code -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -39,14 +46,6 @@
<version.hive>3.1.3</version.hive>
<version.googlebigdataoss>2.2.20</version.googlebigdataoss>
<version.testcontainers>1.20.4</version.testcontainers>
<!-- Debezium -->
<!-- NOTE:Use same version as debezium https://github.com/debezium/debezium/blob/main/pom.xml -->
<version.debezium>3.0.4.Final</version.debezium>
<!-- NOTE:Use same version as debezium ${quarkus.version.runtime} https://github.com/debezium/debezium/blob/main/pom.xml -->
<!-- NOTE:This is only needed for quarkus-maven-plugin Quarkus dependency is defined by Debezium -->
<version.quarkus>3.8.5</version.quarkus>
<!-- NOTE:Use same version as debezium https://github.com/debezium/debezium/blob/main/debezium-bom/pom.xml -->
<version.groovy>4.0.17</version.groovy>
</properties>
<dependencyManagement>
<dependencies>
Expand All @@ -71,14 +70,6 @@
<artifactId>slf4j-jboss-logmanager</artifactId>
<version>[1.2.0.Final,)</version>
</dependency>
<!-- Debezium Scripting -->
<dependency>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy-bom</artifactId>
<version>${version.groovy}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
Expand Down

0 comments on commit 352cbd4

Please sign in to comment.