From 7bf0c15f5b8937781d90fd5157a0aceee1c39eda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C5=82awomir=20Tomaszek?= Date: Wed, 20 May 2026 18:08:02 +0200 Subject: [PATCH 1/2] adding OS to build name --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index c1a366e58..68292a401 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -12,7 +12,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macos-latest] java: [21, 24, 25, 26, '27-ea'] - name: Build with Java ${{ matrix.java }} + name: Build with Java ${{ matrix.java }} on ${{ matrix.os }} steps: - uses: actions/checkout@v5 From 4ea830761889f8abec4221a07dc6c3068bbbb544 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C5=82awomir=20Tomaszek?= Date: Wed, 20 May 2026 18:01:42 +0200 Subject: [PATCH 2/2] updating maven to 3.9.16, switching CI to maven wrapper, adjusting enforcer plugin configuration --- .github/workflows/maven.yml | 4 ++-- .mvn/wrapper/maven-wrapper.properties | 2 +- pom.xml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 68292a401..05276d294 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -25,9 +25,9 @@ jobs: - name: Check Maven version and directory contents shell: bash run: | - mvn -v + ./mvnw -v echo "** ls **" pwd && ls -l - name: Build with Maven - run: mvn -B install --file pom.xml + run: ./mvnw -B install --file pom.xml diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties index c595b0093..216df0589 100644 --- a/.mvn/wrapper/maven-wrapper.properties +++ b/.mvn/wrapper/maven-wrapper.properties @@ -1,3 +1,3 @@ wrapperVersion=3.3.4 distributionType=only-script -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.14/apache-maven-3.9.14-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.16/apache-maven-3.9.16-bin.zip diff --git a/pom.xml b/pom.xml index 4566c4736..d19ea77c8 100644 --- a/pom.xml +++ b/pom.xml @@ -262,10 +262,10 @@ - 3.9.0 + [3.9,) - ${java.version}} + [${java.version},) true