Skip to content

Bump com.diffplug.spotless:spotless-maven-plugin from 3.2.1 to 3.3.0 #348

Bump com.diffplug.spotless:spotless-maven-plugin from 3.2.1 to 3.3.0

Bump com.diffplug.spotless:spotless-maven-plugin from 3.2.1 to 3.3.0 #348

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-22.04
eclipse: 4.12
java: 17
- os: windows-2022
eclipse: 4.12
java: 17
- os: macos-15-intel
# Even if our tests pass on macOS 15 with some older Eclipse versions
# 4.35 is the first that explicitly targets macOS 15 - see
# https://eclipse.dev/eclipse/development/plans.html?file=plans/eclipse_project_plan_4_35.xml
# https://eclipse.dev/eclipse/development/plans.html?file=plans/eclipse_project_plan_4_34.xml
eclipse: 4.35
java: 21
name: Eclipse ${{ matrix.eclipse }}, Java ${{ matrix.java }}, ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Build
shell: bash
run: |
if [[ "$RUNNER_OS" == "Linux" ]]; then
export DISPLAY=:99.0
Xvfb $DISPLAY &
fi
./mvnw -V -B -e verify -Pe${{ matrix.eclipse }} -Dtycho.executionEnvironment=JavaSE-${{ matrix.java }} -DskipUITests=false --no-transfer-progress