Bump commons-beanutils:commons-beanutils from 1.9.4 to 1.10.0 in the all-maven group #202
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- boris/* | |
tags: | |
- '*' | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
name: Build and upload | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Build with Maven | |
run: mvn --batch-mode clean package verify javadoc:jar source:jar site | |
- name: Archive plugin jar | |
uses: actions/upload-artifact@v4 | |
with: | |
path: ./cc-xjc-plugin/target/cc-xjc-plugin-*.jar | |
tests: | |
name: Build with JDK ${{ matrix.Java }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '11', '17', '21', '23' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.Java }} | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Build with Maven | |
run: mvn --batch-mode clean package verify site |