Skip to content

Bump the all-maven group with 5 updates #173

Bump the all-maven group with 5 updates

Bump the all-maven group with 5 updates #173

Workflow file for this run

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' ]
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