Skip to content

Bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1 #145

Bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1

Bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1 #145

Workflow file for this run

name: CrySL build
on: [push, pull_request]
jobs:
# Builds the project in windows, ubuntu and macos
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
name: Project build in ${{ matrix.os }}
steps:
- name: Checkout source code
uses: actions/checkout@v3
# Sets up Java version
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-package: jdk
java-version: '11'
# Sets up Maven version
- name: Set up Maven
uses: stCarolas/setup-maven@v4.5
with:
maven-version: 3.8.6
# Restores Maven dependecies
- name: Restore local Maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Run maven command
run: mvn clean verify