Skip to content

Bump basepom to 65.1 #915

Bump basepom to 65.1

Bump basepom to 65.1 #915

Workflow file for this run

name: ci
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 17, 21, 25 ]
name: jdk-${{ matrix.java }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
distribution: "temurin"
# The JDK listed last will be the default and what Maven runs with
# https://github.com/marketplace/actions/setup-java-jdk#install-multiple-jdks
java-version: |
${{ matrix.java }}
25
cache: "maven"
- name: "Build"
run: |
mvn \
--batch-mode \
-no-transfer-progress \
-V \
-Dproject.build.jdk.version=${{ matrix.java }} \
verify
env:
JDK_JAVA_OPTIONS: --add-opens=java.base/java.lang=ALL-UNNAMED