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/21 16:03:27 UTC

(logging-log4j-tools) branch main updated: Limit Jakarta Dependency Injection to version 1.x

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-tools.git


The following commit(s) were added to refs/heads/main by this push:
     new 947b454  Limit Jakarta Dependency Injection to version 1.x
947b454 is described below

commit 947b454977109ccbc2f095d1e666a316e3cdd4c6
Author: Piotr P. Karwasz <pi...@karwasz.org>
AuthorDate: Thu Dec 21 17:02:51 2023 +0100

    Limit Jakarta Dependency Injection to version 1.x
---
 .github/dependabot.yaml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml
index 9567d71..9e0a211 100644
--- a/.github/dependabot.yaml
+++ b/.github/dependabot.yaml
@@ -37,6 +37,9 @@ updates:
       # Keep at version 3.6.x
       - dependency-name: "org.apache.maven:maven-plugin-api"
         update-types: ["version-update:semver-major", "version-update:semver-minor"]
+      # Jakarta Dependency Injection 2.0 uses `jakarta.*` namespace
+      - dependency-name: "jakarta.inject:jakarta.inject-api"
+        versions: ["[2,)"]
 
   - package-ecosystem: github-actions
     directory: "/"