Skip to content

Bump maven-gpg-plugin from 1.5 to 3.0.1 #73

Bump maven-gpg-plugin from 1.5 to 3.0.1

Bump maven-gpg-plugin from 1.5 to 3.0.1 #73

Workflow file for this run

name: Java CI with Maven
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '14' ]
steps:
- uses: actions/checkout@v3.1.0
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3.6.0
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
- name: print Java version
run: java -version
- name: Build
run: mvn -B --no-transfer-progress clean package verify