Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Align package dependencies to iceberg and revert iceberg back to 1.4.3 #276

Merged
merged 14 commits into from
Mar 1, 2024
13 changes: 6 additions & 7 deletions debezium-server-iceberg-sink/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<!-- Iceberg -->
<dependency>
<groupId>org.apache.iceberg</groupId>
<artifactId>iceberg-spark-runtime-3.3_2.13</artifactId>
<artifactId>iceberg-spark-runtime-${version.spark.major}_${version.spark.scala}</artifactId>
<version>${version.iceberg}</version>
</dependency>
<dependency>
Expand Down Expand Up @@ -87,22 +87,20 @@
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-storage</artifactId>
<version>2.22.1</version>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-nio</artifactId>
<version>0.127.7</version>
</dependency>
<dependency>
<groupId>com.google.cloud.bigdataoss</groupId>
<artifactId>gcs-connector</artifactId>
<version>hadoop3-2.2.8</version>
<version>hadoop3-${version.googlebigdataoss}</version>
</dependency>
<dependency>
<groupId>com.google.cloud.bigdataoss</groupId>
<artifactId>gcsio</artifactId>
<version>2.2.16</version>
<version>${version.googlebigdataoss}</version>
</dependency>
<!-- AWS -->
<dependency>
Expand Down Expand Up @@ -146,6 +144,7 @@
</exclusion>
</exclusions>
</dependency>
<!-- aws-java-sdk-bundle Test dependency -->
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-bundle</artifactId>
Expand Down Expand Up @@ -203,7 +202,7 @@
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-core_2.13</artifactId>
<artifactId>spark-core_${version.spark.scala}</artifactId>
<version>${version.spark}</version>
<scope>test</scope>
<exclusions>
Expand All @@ -227,7 +226,7 @@
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-sql_2.13</artifactId>
<artifactId>spark-sql_${version.spark.scala}</artifactId>
<version>${version.spark}</version>
<scope>test</scope>
</dependency>
Expand Down
23 changes: 19 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,19 @@
<version.assembly.plugin>3.6.0</version.assembly.plugin>
<!-- Use same version as iceberg https://github.com/apache/iceberg/blob/main/gradle/libs.versions.toml#L53-->
<version.jackson>2.14.2</version.jackson>
<version.iceberg>1.5.0</version.iceberg>
<version.spark>3.3.4</version.spark>
<version.iceberg>1.4.2</version.iceberg>
<!-- Following two properties defines which version of iceberg-spark-runtime is used -->
<!-- Example https://mvnrepository.com/artifact/org.apache.iceberg/iceberg-spark-runtime-3.4_2.13/1.4.3 -->
<version.spark.major>3.5</version.spark.major>
<version.spark.scala>2.13</version.spark.scala>
<version.spark>${version.spark.major}.1</version.spark>
<version.hadoop>3.3.6</version.hadoop>
<version.hive>3.1.3</version.hive>
<version.awssdk>2.22.9</version.awssdk>
<!-- Use same version as iceberg https://github.com/apache/iceberg/blob/main/gradle/libs.versions.toml#L31-->
<version.awssdk>2.24.5</version.awssdk>
<!-- Use same version as iceberg https://github.com/apache/iceberg/blob/main/gradle/libs.versions.toml#L44-->
<version.googlelibraries>26.28.0</version.googlelibraries>
<version.googlebigdataoss>2.2.20</version.googlebigdataoss>
<version.testcontainers>1.19.3</version.testcontainers>
<!-- Debezium -->
<version.debezium>2.5.2.Final</version.debezium>
Expand Down Expand Up @@ -81,7 +89,14 @@
<type>pom</type>
<scope>import</scope>
</dependency>

<!-- gcp -->
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>${version.googlelibraries}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- MySQL JDBC Driver, Binlog reader, Geometry support -->
<dependency>
<groupId>mysql</groupId>
Expand Down