Skip to content

Bump org.codehaus.mojo:license-maven-plugin from 2.1.0 to 2.3.0 #49

Bump org.codehaus.mojo:license-maven-plugin from 2.1.0 to 2.3.0

Bump org.codehaus.mojo:license-maven-plugin from 2.1.0 to 2.3.0 #49

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v3.10.0
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Cache Maven packages
uses: actions/cache@v3.3.1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and analyze
run: |
mvn \
-B \
clean \
verify \
-Ddocker.skip=true \
--file pom.xml