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 2020/09/02 09:03:22 UTC

[maven-shade-plugin] branch master updated: Update Dependabot config - exclude 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-shade-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 4e0776f  Update Dependabot config - exclude Java 8 dependencies
4e0776f is described below

commit 4e0776ff7b976a321769c9b4d5af21f1393646b8
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Wed Sep 2 10:55:35 2020 +0200

    Update Dependabot config - exclude Java 8 dependencies
---
 .github/dependabot.yml | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index d0e9890..f7ebebb 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -14,6 +14,9 @@
 #  See the License for the specific language governing permissions and
 #  limitations under the License.
 #
+# Please see the documentation for all configuration options:
+# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
+#
 version: 2
 updates:
 - package-ecosystem: maven
@@ -21,4 +24,18 @@ updates:
   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"
+    - dependency-name: commons-io:commons-io
+      versions:
+        - ">= 2.7"
+    # Ignore Maven 3.2.1+
+    - dependency-name: org.apache.maven.plugin-testing:maven-plugin-testing-tools
+      versions:
+        - ">=3.2.0"
\ No newline at end of file