Skip to content

Bump org.apache.maven.plugins:maven-plugin-plugin from 3.9.0 to 3.11.0 #52

Bump org.apache.maven.plugins:maven-plugin-plugin from 3.9.0 to 3.11.0

Bump org.apache.maven.plugins:maven-plugin-plugin from 3.9.0 to 3.11.0 #52

Workflow file for this run

name: Java CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 17, 21 ]
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
- name: Cache local Maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B -Dstyle.color=always install --file pom.xml -Dit=true
- uses: actions/upload-artifact@v3
with:
name: build-jdk-${{ matrix.java }}
path: target/tulipcc-maven-plugin-*.jar