Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/setup-jdk/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'Setup JDK'
description: 'Sets up JDK 11 with Maven caching'
description: 'Sets up JDK 17 with Maven caching'

runs:
using: 'composite'
Expand All @@ -8,5 +8,5 @@ runs:
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
java-version: '17'
cache: 'maven'
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ java -jar flink-sql-runner/target/flink-sql-runner.jar --sqlfile script.sql --ud

## Technology Stack

- **Java 11** - Base language version
- **Java 17** - Base language version
- **Apache Flink 1.19.2** - Stream processing framework (configurable via profiles)
- **Maven** - Build system
- **Lombok** - Code generation
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>

<!-- Flink versions -->
<flink.version>2.2.0</flink.version>
Expand All @@ -103,7 +103,7 @@
<hadoop.version>3.3.4</hadoop.version>
<iceberg.version>1.10.0</iceberg.version>
<jacoco.version>0.8.14</jacoco.version>
<jdbi3.version>3.49.6</jdbi3.version>
<jdbi3.version>3.50.0</jdbi3.version>
<json-path.version>2.10.0</json-path.version>
<junit.version>5.13.4</junit.version>
<log4j.version>2.25.2</log4j.version>
Expand Down