Skip to content

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.5.0 to 3.6.0 #680

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.5.0 to 3.6.0

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.5.0 to 3.6.0 #680

Workflow file for this run

#
# JPAstreamer - Express JPA queries with Java Streams
# Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved.
#
# License: GNU Lesser General Public License (LGPL), version 2.1 or later.
#
# This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU Lesser General Public License for more details.
#
# See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE
#
# 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: Java CI with Maven
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# test against latest update of each major Java version, as well as specific updates of LTS versions:
java: [ 11, 17, 20 ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v3.6.0
- name: Set up Java
uses: actions/setup-java@v3.12.0
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B package --file pom.xml -Prelease