Skip to content

NIFI-16004 Updated Maven version to build with from 3.9.12 to 3.9.16 to match the version used by the Maven wrapper. #298

NIFI-16004 Updated Maven version to build with from 3.9.12 to 3.9.16 to match the version used by the Maven wrapper.

NIFI-16004 Updated Maven version to build with from 3.9.12 to 3.9.16 to match the version used by the Maven wrapper. #298

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
name: build
on:
push:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build-java-21:
name: Java 21
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Setup Java JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'liberica'
cache: 'maven'
- name: Build
run: ./mvnw --batch-mode verify