Skip to content

Update README.adoc

Update README.adoc #51

Workflow file for this run

---
name: build
on:
push:
branches: [main]
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest]
java: [ 21, 17, 11 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: maven
server-id: vpro-ossrh
- name: Build with Maven
run: mvn -ntp -B compile dependency:copy-dependencies