Skip to content

Configure maven-staging-plugin #254

Configure maven-staging-plugin

Configure maven-staging-plugin #254

Workflow file for this run

name: build
on:
push:
branches:
- version/**
pull_request:
branches:
- version/**
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17', '21', '22', '23' ]
architecture: [ 'x64' ]
fail-fast: false
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
cache: 'maven'
- name: Build with Maven
run: mvn test