Skip to content

Update version of enforcer plugin and extra-enforcer-rules in pom.xml #17

Update version of enforcer plugin and extra-enforcer-rules in pom.xml

Update version of enforcer plugin and extra-enforcer-rules in pom.xml #17

Workflow file for this run

name: Build
on:
push:
branches:
- '*'
jobs:
build:
name: Build
runs-on: ubuntu-latest
if: startsWith(github.event.head_commit.message, 'Releasing version') != true
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Cache Maven
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Setup Java
uses: actions/setup-java@v2
with:
java-version: 8
distribution: 'zulu'
- name: Build
run: ./mvnw --no-transfer-progress -B --file pom.xml verify