Skip to content

- Improved Maven site descriptor #197

- Improved Maven site descriptor

- Improved Maven site descriptor #197

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Linux Build
on:
push:
branches:
- release/*
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
java-version: '21'
distribution: 'adopt'
cache: maven

Check failure on line 24 in .github/workflows/linux_maven.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/linux_maven.yml

Invalid workflow file

You have an error in your yaml syntax on line 24
- name: Cache Dependency-Check DB
uses: actions/cache@v4
with:
path: ~/.m2/repository/org/owasp/dependency-check-data
key: ${{ runner.os }}-dc-data-v12
restore-keys: |
${{ runner.os }}-dc-data-
- name: Build with Maven
run: mvn -s .ci.settings.xml --no-transfer-progress -Dgh_username=${{ secrets.GH_USERNAME }} -Dgh_token=${{ secrets.GH_TOKEN }} -Prelease-commons,sonatype-oss-release package site
env:
MAVEN_OPTS: -Xms256m -Xmx2g --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.text=ALL-UNNAMED --add-opens=java.desktop/java.awt.font=ALL-UNNAMED
nvd_api_key: ${{ secrets.NVD_API_KEY }}