Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 2.22.2 to 3.3.0 #456

Bump org.apache.maven.plugins:maven-surefire-plugin from 2.22.2 to 3.3.0

Bump org.apache.maven.plugins:maven-surefire-plugin from 2.22.2 to 3.3.0 #456

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: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 11, 17, 21 ]
steps:
- uses: actions/checkout@v3
- name: Set up Java ${{ matrix.java-version }}
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ matrix.java-version }}
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven and Java ${{ matrix.java-version }}
run: mvn -B package --no-transfer-progress --file pom.xml
- name: Generate JaCoCo report ${{ matrix.java-version }}
run: mvn -B jacoco:report --no-transfer-progress --file pom.xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
flags: tests-java-${{ matrix.java-version }}
verbose: true
deploy:
if: ${{ success() && github.event_name != 'pull_request' }}
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- name: Set up Java 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'zulu'
server-id: sonatype-nexus-snapshots
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Run maven deploy
run: mvn -B -DskipTests=true deploy --no-transfer-progress --file pom.xml
env:
MAVEN_USERNAME: ${{ secrets.SONATYPE_USER }}
MAVEN_PASSWORD: ${{ secrets.SONATYPE_PWD }}