From c0a3a18b67e8e64ddcea83f5760ab2b5d7f297b9 Mon Sep 17 00:00:00 2001 From: Lukasz Lenart Date: Mon, 29 Dec 2025 12:08:55 +0100 Subject: [PATCH] chore(deps): ignore incompatible updates for release/struts-6-8-x (#1497) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 * 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 * 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 --------- Co-authored-by: Claude --- .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"