Skip to content

Bump maven wrapper to 3.3.2, c3p0 to 0.10.1 with code changes, and update github actions #1284

Bump maven wrapper to 3.3.2, c3p0 to 0.10.1 with code changes, and update github actions

Bump maven wrapper to 3.3.2, c3p0 to 0.10.1 with code changes, and update github actions #1284

Workflow file for this run

name: Java CI
on: [workflow_dispatch, push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
cache: [maven]
distribution: [temurin]
java: [11, 17, 21, 22, 23-ea]
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
max-parallel: 4
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }} ${{ matrix.distribution }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: ${{ matrix.distribution }}
cache: ${{ matrix.cache }}
- name: Test with Maven
run: ./mvnw test -B -V --no-transfer-progress -D"license.skip=true"