37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
|
|
|
|
name: Maven CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
package:
|
|
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
java: [11]
|
|
name: Java ${{ matrix.java }} building ...
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Java ${{ matrix.java }}
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: ${{ matrix.java }}
|
|
distribution: 'temurin'
|
|
cache: maven
|
|
server-id: sonatype-nexus-snapshots
|
|
server-username: MAVEN_USERNAME
|
|
server-password: MAVEN_PASSWORD
|
|
- name: Build with Maven
|
|
run: mvn -B package --file pom.xml -DdisableXmlReport=true -Djacoco.skip=true -Dpmd.skip=true
|
|
env:
|
|
MAVEN_USERNAME: ${{ secrets.OSSRHUSERNAME }}
|
|
MAVEN_PASSWORD: ${{ secrets.OSSRHPASSWORD }}
|