You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by pk...@apache.org on 2023/12/04 08:57:53 UTC

(logging-log4j-samples) branch main updated: Add Maven Central explictly to Dependabot config

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

pkarwasz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-log4j-samples.git


The following commit(s) were added to refs/heads/main by this push:
     new 1c72117  Add Maven Central explictly to Dependabot config
1c72117 is described below

commit 1c72117c3307918d68e37798f52d4468b61d011c
Author: Piotr P. Karwasz <pi...@karwasz.org>
AuthorDate: Mon Dec 4 09:57:46 2023 +0100

    Add Maven Central explictly to Dependabot config
---
 .github/dependabot.yaml | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml
index 066959d..80cb3b4 100644
--- a/.github/dependabot.yaml
+++ b/.github/dependabot.yaml
@@ -16,12 +16,22 @@
 #
 
 version: 2
+
+# Add Maven Central explicitly to work around:
+#   https://github.com/dependabot/dependabot-core/issues/8329
+registries:
+  maven-central:
+    type: maven-repository
+    url: https://repo.maven.apache.org/maven2
+
 updates:
   - package-ecosystem: maven
     directory: "/"
     schedule:
       interval: daily
     open-pull-requests-limit: 10
+    registries:
+      - maven-central
     ignore:
       # Version 3.x uses Jakarta EE 9 and Java 17
       - dependency-name: "org.springframework.boot:spring-boot-starter-parent"