This is an automated email from the ASF dual-hosted git repository.
lukaszlenart pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/struts.git
The following commit(s) were added to refs/heads/main by this push:
new c0a3a18b6 chore(deps): ignore incompatible updates for
release/struts-6-8-x (#1497)
c0a3a18b6 is described below
commit c0a3a18b67e8e64ddcea83f5760ab2b5d7f297b9
Author: Lukasz Lenart <[email protected]>
AuthorDate: Mon Dec 29 12:08:55 2025 +0100
chore(deps): ignore incompatible updates for release/struts-6-8-x (#1497)
* chore(deps): ignore jetty-maven-plugin updates for release/struts-6-8-x
The jetty-maven-plugin 11.x is not compatible with Struts 6.8.x branch
which requires Java EE (not Jakarta EE). This prevents Dependabot from
creating incompatible update PRs like #1493.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
* chore(deps): also ignore caffeine updates for release/struts-6-8-x
Caffeine 3.x requires Java 11+ and uses jakarta.inject which is
incompatible with Struts 6.8.x. This prevents PRs like #1496.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
* chore(deps): also ignore jaxb-impl updates for release/struts-6-8-x
JAXB 4.x is the Jakarta EE version which is incompatible with
Struts 6.8.x (Java EE based). This prevents PRs like #1492.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
---------
Co-authored-by: Claude <[email protected]>
---
.github/dependabot.yml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index f09e2bee6..e7c4b7864 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -14,3 +14,7 @@ updates:
schedule:
interval: "weekly"
target-branch: "release/struts-6-8-x"
+ ignore:
+ - dependency-name: "org.eclipse.jetty:jetty-maven-plugin"
+ - dependency-name: "com.github.ben-manes.caffeine:caffeine"
+ - dependency-name: "com.sun.xml.bind:jaxb-impl"