This is an automated email from the ASF dual-hosted git repository.
lprimak pushed a commit to branch 3.x
in repository https://gitbox.apache.org/repos/asf/shiro.git
The following commit(s) were added to refs/heads/3.x by this push:
new 8d4fcd6db bugfix: EE builds with JDK < 21
8d4fcd6db is described below
commit 8d4fcd6dbbcd0be348829c789dab0fe908a4c3e4
Author: lprimak <[email protected]>
AuthorDate: Tue Jan 27 20:44:40 2026 -0600
bugfix: EE builds with JDK < 21
---
.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 f2a11c6d2..3065a5561 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -89,7 +89,7 @@ jobs:
distribution: ${{ matrix.dist }}
- name: Build with Maven (Linux)
- if: matrix.os == 'ubuntu-latest'
+ if: matrix.os == 'ubuntu-latest' && matrix.jdk >= 21
run: >-
./mvnw verify --show-version --errors --batch-mode
--no-transfer-progress
-Dgh_user=${{ github.actor }} -Dgh_token=${{ secrets.GITHUB_TOKEN }}