Skip to content

Bump org.openjfx:javafx-controls from 22 to 22.0.1 #394

Bump org.openjfx:javafx-controls from 22 to 22.0.1

Bump org.openjfx:javafx-controls from 22 to 22.0.1 #394

Workflow file for this run

---
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
java: [17, 21, 22]
fail-fast: false
max-parallel: 4
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B test package --file pom.xml