This is an automated email from the ASF dual-hosted git repository.
sjaranowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-dependency-analyzer.git
The following commit(s) were added to refs/heads/master by this push:
new 3f70343 Exclude slf4j 2.x and mockito 5.x from dependabot
3f70343 is described below
commit 3f7034375669f5944859ac98540fecabaa9d6cd0
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Sat Jan 17 13:19:24 2026 +0100
Exclude slf4j 2.x and mockito 5.x from dependabot
---
.github/dependabot.yml | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 08cd9ce..21ed9a7 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -20,7 +20,13 @@ updates:
directory: "/"
schedule:
interval: daily
- open-pull-requests-limit: 10
+ ignore:
+ # Maven 3.x use slf4j 1.7.x
+ - dependency-name: "org.slf4j:*"
+ versions: ["[2.0.0, )"]
+ # Mockito 5.x requires Java 11+
+ - dependency-name: "org.mockito:*"
+ versions: ["[5.0.0, )"]
- package-ecosystem: "github-actions"
directory: "/"