Skip to content

Bump maven-plugin-plugin.version from 3.15.0 to 3.15.1 #495

Bump maven-plugin-plugin.version from 3.15.0 to 3.15.1

Bump maven-plugin-plugin.version from 3.15.0 to 3.15.1 #495

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Build
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 8
cache: maven
- name: Setup Maven
run: mvn -N --ntp -V -e -B -C io.takari:maven:wrapper -Dmaven=3.8.1
- name: Build with Maven
run: ./mvnw -V -e -B -C -Pit clean verify