Skip to content

[maven-release-plugin] prepare for next development iteration #55

[maven-release-plugin] prepare for next development iteration

[maven-release-plugin] prepare for next development iteration #55

Workflow file for this run

name: Build IPF with Java 21
on: [push, pull_request, workflow_dispatch]
env:
MAVEN_OPTS: -Xmx2048m
# on download timeouts, consider to disable connection pooling
# -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.count=3
# or consider to restrict the ttl
# -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
jobs:
build:
runs-on: ubuntu-latest
name: Java 21 build
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Build with Maven
run: mvn -B clean test --file pom.xml