You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2021/04/03 18:43:49 UTC

[maven-doxia] branch master updated: Dependabot: ignore Java 8 dependencies

This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-doxia.git


The following commit(s) were added to refs/heads/master by this push:
     new e02a241  Dependabot: ignore Java 8 dependencies
e02a241 is described below

commit e02a241100c73273faa7e2b7c7473b9820401972
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sat Apr 3 20:42:13 2021 +0200

    Dependabot: ignore Java 8 dependencies
---
 .github/dependabot.yml | 20 ++++++++++++++------
 1 file changed, 14 insertions(+), 6 deletions(-)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index fc8e411..2a05b81 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -16,9 +16,17 @@
 #
 version: 2
 updates:
-  - package-ecosystem: maven
-    directory: "/"
-    schedule:
-      interval: daily
-      time: '04:00'
-    open-pull-requests-limit: 10
+- package-ecosystem: maven
+  directory: "/"
+  schedule:
+    interval: daily
+    time: '04:00'
+  open-pull-requests-limit: 10
+  ignore:
+# ignore Java 8+ dependencies
+    - dependency-name: org.mockito:mockito-core
+      versions:
+      - ">= 3.0"
+    - dependency-name: org.apache.commons:commons-lang3
+      versions:
+      - ">= 3.9"