Skip to content

Bump org.eclipse.jetty:jetty-server from 9.4.44.v20210927 to 9.4.55.v20240627 #319

Bump org.eclipse.jetty:jetty-server from 9.4.44.v20210927 to 9.4.55.v20240627

Bump org.eclipse.jetty:jetty-server from 9.4.44.v20210927 to 9.4.55.v20240627 #319

Workflow file for this run

name: Build
on: [pull_request]
jobs:
build-m2:
strategy:
# do not cancel other builds if one fails
fail-fast: false
matrix:
os: [windows-2022, macos-13]
runs-on: ${{ matrix.os }}
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Build with Maven
run: mvn -B -Pm2 clean verify --file pom.xml
build-p2:
strategy:
# do not cancel other builds if one fails
fail-fast: false
matrix:
os: [windows-2022, macos-13]
runs-on: ${{ matrix.os }}
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Build with Maven
run: mvn -B -Pp2 clean verify --file pom.xml