Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,19 @@ updates:
interval: weekly
open-pull-requests-limit: 10
ignore:
- dependency-name: "jakarta.inject:jakarta.inject-api"
- dependency-name: "jakarta.inject:jakarta.inject-api"
# --- Configuration to ignore all JUnit dependencies (e.g., 5.x) ---
# Ignores all artifacts with Group ID 'org.junit.jupiter' (e.g., api, engine, params)
- dependency-name: "org.junit.jupiter:*"
# Ignores all artifacts with Group ID 'org.junit.platform' (e.g., launcher, suite)
- dependency-name: "org.junit.platform:*"
# Ignores the JUnit Vintage Engine
- dependency-name: "org.junit.vintage:*"
# -----------------------------------------------------------------------
groups:
dependencies:
patterns:
- "*"
- "*"
labels:
- "dependencies"
target-branch: "master"
Expand All @@ -24,4 +32,4 @@ updates:
prefix: "[workflow]"
labels:
- "dependencies"
target-branch: "master"
target-branch: "master"
2 changes: 1 addition & 1 deletion blackbox-test-inject/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.18</version>
<version>1.5.19</version>
<scope>test</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion inject/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.18</version>
<version>1.5.19</version>
<scope>test</scope>
</dependency>

Expand Down