Skip to content

Add release notes for 4.0 #447

Add release notes for 4.0

Add release notes for 4.0 #447

Workflow file for this run

## This allows Github actions to build this project
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [11, 17]
name: build with jdk ${{matrix.java}}
steps:
- uses: actions/checkout@v2
name: checkout
- uses: actions/setup-java@v3
name: set up jdk ${{matrix.java}}
with:
java-version: ${{matrix.java}}
distribution: 'temurin'
cache: 'maven'
- name: build with maven
run: mvn -B --no-transfer-progress verify javadoc:javadoc --file pom.xml -Pvalidate-formatting