Skip to content

Pull request #301: Third party licence whitelist correction #252

Pull request #301: Third party licence whitelist correction

Pull request #301: Third party licence whitelist correction #252

Workflow file for this run

name: build
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Cache local Maven repository
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-|
- name: Build with Maven
run: mvn -B test javadoc:javadoc javadoc:aggregate --file pom.xml