Skip to content

Bump cglib:cglib-nodep from 2.2 to 2.2.2 #283

Bump cglib:cglib-nodep from 2.2 to 2.2.2

Bump cglib:cglib-nodep from 2.2 to 2.2.2 #283

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: CI with Maven
on:
push:
branches: [ v-1.4.x ]
pull_request:
branches: [ v-1.4.x ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 17, 21, 25 ]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build with Maven
run: mvn -V -B install ${{ matrix.java == 8 && 'site' || '' }}