Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/maven.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
branches: [ "master" ]

jobs:
# Compile once on the minimum supported JDK (21) and share artifacts with test jobs
# Compile once on JDK 25 and share artifacts with test jobs
build:
runs-on: ubuntu-latest
timeout-minutes: 30
Expand All @@ -38,11 +38,11 @@ jobs:
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: '3.10'
- name: Set up JDK 21
- name: Set up JDK 25
uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5.4.0
with:
distribution: temurin
java-version: 21
java-version: 25
- name: Ensure a clean state without storm artifacts
run: rm -rf ~/.m2/repository/org/apache/storm
- name: Build project (compile + install, skip tests)
Expand All @@ -66,7 +66,7 @@ jobs:
timeout-minutes: 45
strategy:
matrix:
java: [ 21, 25 ]
java: [ 25 ]
module: [ Client, Server, Core, External, Integration-Test ]
experimental: [false]
fail-fast: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightlies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ jobs:
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: '3.10'
- name: Set up JDK 21
- name: Set up JDK 25
uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5.4.0
with:
distribution: temurin
java-version: 21
java-version: 25
- name: Ensure a clean state without storm artifacts
run: rm -rf ~/.m2/repository/org/apache/storm
- name: Set up project dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/snapshots.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ jobs:
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: '3.10'
- name: Set up JDK 21
- name: Set up JDK 25
uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5.4.0
with:
distribution: temurin
java-version: 21
java-version: 25
- id: extract_version
name: Extract project version
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-license-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ jobs:
with:
python-version: '3.10'

- name: Set up JDK 21
- name: Set up JDK 25
uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5.4.0
with:
distribution: temurin
java-version: 21
java-version: 25

- name: Ensure clean state without storm artifacts
run: rm -rf ~/.m2/repository/org/apache/storm
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
</issueManagement>

<properties>
<javaVersion>21</javaVersion>
<javaVersion>25</javaVersion>
<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
<maven.javadoc.failOnWarnings>false</maven.javadoc.failOnWarnings>

Expand Down
Loading