Skip to content

now that we use jdk 21 we can update bnd-maven-plugin, maven-jar-plug… #70

now that we use jdk 21 we can update bnd-maven-plugin, maven-jar-plug…

now that we use jdk 21 we can update bnd-maven-plugin, maven-jar-plug… #70

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: Test
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
- name: Build with Maven
run: xvfb-run mvn -B test