From 563f5d3c1179a63e8d782f492b99f5980a51d163 Mon Sep 17 00:00:00 2001 From: Sylwester Lachiewicz Date: Wed, 9 Sep 2026 13:03:44 +0200 Subject: [PATCH] Ignore SLF4J >= 2.0 on master in Dependabot Mirror the ignore rule from the 4.x branch to maintain compatibility with Maven 3.x runtimes. --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index eb46641a..86bc51ad 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,6 +5,10 @@ updates: target-branch: "master" schedule: interval: "daily" + ignore: + # Keep slf4j 1.7.x for Maven 3 compatibility + - dependency-name: "org.slf4j:*" + versions: ["[2.0.0,)"] - package-ecosystem: "maven" directory: "/"