Skip to content

[maven-release-plugin] prepare for next development iteration #103

[maven-release-plugin] prepare for next development iteration

[maven-release-plugin] prepare for next development iteration #103

Workflow file for this run

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