Skip to content

Bump org.apache.maven.plugins:maven-deploy-plugin from 3.0.0-M1 to 3.1.1 #15

Bump org.apache.maven.plugins:maven-deploy-plugin from 3.0.0-M1 to 3.1.1

Bump org.apache.maven.plugins:maven-deploy-plugin from 3.0.0-M1 to 3.1.1 #15

Workflow file for this run

name: Java CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 11
distribution: temurin
- name: Cache Local Maven Repository
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B verify