Skip to content

chore(deps-dev): bump mockito-junit-jupiter from 5.3.1 to 5.4.0 (#283) #255

chore(deps-dev): bump mockito-junit-jupiter from 5.3.1 to 5.4.0 (#283)

chore(deps-dev): bump mockito-junit-jupiter from 5.3.1 to 5.4.0 (#283) #255

Workflow file for this run

name: workflow-build
on:
push:
branches: [ dev ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: 11
distribution: temurin
cache: maven
- name: Compile and test project
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./mvnw -B -ntp clean verify sonar:sonar -Dsonar.login=${{ secrets.SONAR_TOKEN }} -Dsonar.scanner.force-deprecated-java-version=true
# Build and Push snapshots to maven central
- name: Build and Push snapshots to Maven central
uses: samuelmeuli/[email protected]
with:
maven_args: "-DskipTests=true"
gpg_private_key: ${{ secrets.gpg_private_key }}
gpg_passphrase: ${{ secrets.gpg_passphrase }}
nexus_username: ${{ secrets.ossrh_username }}
nexus_password: ${{ secrets.ossrh_password }}