Skip to content

Bump org.apache.maven.plugins:maven-artifact-plugin from 3.4.1 to 3.5.0 #319

Bump org.apache.maven.plugins:maven-artifact-plugin from 3.4.1 to 3.5.0

Bump org.apache.maven.plugins:maven-artifact-plugin from 3.4.1 to 3.5.0 #319

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 2
strategy:
matrix:
java: [ '8', '11', '17', '21' ]
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
- name: Build
run: ./mvnw --no-transfer-progress -B clean verify --file pom.xml