Skip to content

Commit

Permalink
Upgrade java build to 11, quarkus and jackson versions (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
ismailsimsek committed Aug 12, 2022
1 parent 477b0c7 commit fc4a04a
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 19 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.11
uses: actions/setup-java@v1
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 1.11
distribution: 'temurin'
java-version: 11
- name: Build with Maven
run: mvn -B package --file pom.xml
10 changes: 5 additions & 5 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.2_2.12</artifactId>
<artifactId>iceberg-spark-runtime-3.2_2.13</artifactId>
<version>${version.iceberg}</version>
</dependency>
<!-- AWS -->
Expand Down Expand Up @@ -115,7 +115,7 @@
<!-- spark for tests -->
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-core_2.12</artifactId>
<artifactId>spark-core_2.13</artifactId>
<version>${version.spark}</version>
<scope>test</scope>
<exclusions>
Expand All @@ -135,7 +135,7 @@
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-sql_2.12</artifactId>
<artifactId>spark-sql_2.13</artifactId>
<version>${version.spark}</version>
<scope>test</scope>
</dependency>
Expand Down Expand Up @@ -247,7 +247,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<version>3.0.0-M6</version>
<configuration>
<systemProperties>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
Expand All @@ -259,7 +259,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M5</version>
<version>3.0.0-M6</version>
<executions>
<execution>
<id>integration-test</id>
Expand Down
27 changes: 16 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,24 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<release>8</release>
<release>11</release>
<skipITs>true</skipITs>

<version.groovy>3.0.9</version.groovy>
<version.groovy>3.0.12</version.groovy>
<version.assembly.plugin>3.3.0</version.assembly.plugin>
<version.jackson>2.12.6</version.jackson>
<version.jackson>2.13.3</version.jackson>
<version.iceberg>0.14.0</version.iceberg>
<version.spark>3.2.1</version.spark>
<version.hadoop>3.3.1</version.hadoop>
<version.awssdk>2.17.120</version.awssdk>
<version.parquet>1.12.2</version.parquet>
<version.testcontainers>1.17.1</version.testcontainers>
<version.kafkaclients>3.1.0</version.kafkaclients>
<version.spark>3.2.2</version.spark>
<version.hadoop>3.3.3</version.hadoop>
<version.awssdk>2.17.243</version.awssdk>
<version.parquet>1.12.3</version.parquet>
<version.testcontainers>1.17.3</version.testcontainers>
<version.kafkaclients>3.2.0</version.kafkaclients>
<!-- Debezium -->
<version.debezium>1.9.5.Final</version.debezium>
<version.mysql.driver>8.0.28</version.mysql.driver>
<!-- Quarkus -->
<version.quarkus>2.8.2.Final</version.quarkus>
<version.quarkus>2.11.2.Final</version.quarkus>
<!-- ANTLR -->
<!-- Align with Antlr runtime version pulled in via debezium -->
<version.antlr>4.8</version.antlr>
Expand Down Expand Up @@ -132,7 +132,12 @@
<version>4.9.2</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.squareup.okio</groupId>
<artifactId>okio</artifactId>
<version>3.2.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit fc4a04a

Please sign in to comment.