Skip to content

Update dependency biz.aQute.bnd:bnd-maven-plugin to v7.1.0 (#407) #830

Update dependency biz.aQute.bnd:bnd-maven-plugin to v7.1.0 (#407)

Update dependency biz.aQute.bnd:bnd-maven-plugin to v7.1.0 (#407) #830

Workflow file for this run

name: Maven CI
on: [push,workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '17', '21' ]
steps:
- uses: actions/checkout@v4
- name: Set up Java ${{ matrix.Java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Build with Maven
run: mvn -B verify checkstyle:checkstyle --file pom.xml