Bump org.apache.maven.plugins:maven-shade-plugin from 3.5.0 to 3.5.1 #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ************************************************************************* | |
# * Copyright (c) 2022, 2023 Hannes Wellmann and others. | |
# * | |
# * This program and the accompanying materials are made available under | |
# * the terms of the Eclipse Public License 2.0 which accompanies this | |
# * distribution, and is available at https://www.eclipse.org/legal/epl-2.0 | |
# * | |
# * SPDX-License-Identifier: EPL-2.0 | |
# * Hannes Wellmann - initial API and implementation | |
# ************************************************************************* | |
# This workflow will build the dash-licenes project with Maven | |
name: Build dash-licenes | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
branches: | |
- 'master' | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- uses: actions/setup-java@cd89f46ac9d01407894225f350157564c9c7cee2 # v3.12.0 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'maven' | |
- run: mvn clean verify |