Skip to content

Bump org.jetbrains:annotations from 24.1.0 to 25.0.0 #245

Bump org.jetbrains:annotations from 24.1.0 to 25.0.0

Bump org.jetbrains:annotations from 24.1.0 to 25.0.0 #245

Workflow file for this run

name: Java CI
on: [push, pull_request]
jobs:
build:
name: Test with Java ${{ matrix.jdk }}
#runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
jdk: ['8', '11', '17', '22']
#os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.jdk }}
distribution: temurin
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml