Skip to content

Bump org.bitbucket.b_c:jose4j from 0.6.2 to 0.9.3 in /sandbox #386

Bump org.bitbucket.b_c:jose4j from 0.6.2 to 0.9.3 in /sandbox

Bump org.bitbucket.b_c:jose4j from 0.6.2 to 0.9.3 in /sandbox #386

Workflow file for this run

name: MicroProfile JWT Build
on:
push:
paths-ignore:
- 'editorconfig'
- '.gitattributes'
- '.gitignore'
- 'CONTRIBUTING*'
- 'CODEOWNERS'
- 'KEYS'
- 'LICENSE'
- 'NOTICE'
- 'README*'
- 'site.yaml'
pull_request:
paths-ignore:
- 'editorconfig'
- '.gitattributes'
- '.gitignore'
- 'CONTRIBUTING*'
- 'CODEOWNERS'
- 'KEYS'
- 'LICENSE'
- 'NOTICE'
- 'README*'
- 'site.yaml'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11]
name: build with jdk ${{matrix.java}}
steps:
- uses: actions/checkout@v2
name: checkout
- uses: actions/setup-java@v2
name: set up jdk ${{matrix.java}}
with:
java-version: ${{matrix.java}}
distribution: 'temurin'
- name: build with maven
run: mvn verify