Skip to content

Clarify that StableValue was replaced, not removed #5

Clarify that StableValue was replaced, not removed

Clarify that StableValue was replaced, not removed #5

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '21', '22', '23', '24' ]
name: Build with JDK ${{ matrix.java }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'oracle'
- name: Cache Maven dependencies
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn clean compile
- name: Package JAR
run: mvn package