Skip to content

Bump org.codehaus.mojo:exec-maven-plugin from 1.5.0 to 3.4.1 #78

Bump org.codehaus.mojo:exec-maven-plugin from 1.5.0 to 3.4.1

Bump org.codehaus.mojo:exec-maven-plugin from 1.5.0 to 3.4.1 #78

Workflow file for this run

name: build-version
on:
push:
branches:
- version/**
pull_request:
branches:
- version/**
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17' ]
architecture: [ 'x64' ]
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
cache: 'maven'
- name: Build with Maven
run: mvn test