Skip to content

JDK 22-23 compatiblity with reproducible builds #381

JDK 22-23 compatiblity with reproducible builds

JDK 22-23 compatiblity with reproducible builds #381

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java:
- 17
- 21
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Maven Download
run: ./mvnw -V -B dependency:go-offline
- name: Maven Install
run: ./mvnw clean install -B -P ci