Skip to content

Bump org.apache.maven.plugins:maven-shade-plugin from 3.4.1 to 3.5.1 #642

Bump org.apache.maven.plugins:maven-shade-plugin from 3.4.1 to 3.5.1

Bump org.apache.maven.plugins:maven-shade-plugin from 3.4.1 to 3.5.1 #642

Workflow file for this run

name: build
on: [pull_request]
jobs:
build:
if: github.repository_owner == 'hazelcast'
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8' ]
architecture: [ 'x64' ]
distribution: [ 'adopt' ]
name: Build
steps:
- uses: actions/checkout@v3
- name: Setup JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
distribution: ${{ matrix.distribution }}
cache: 'maven'
- name: Build with Maven
run: ./mvnw clean package -V -B -P checkstyle,findbugs