Skip to content

Commit 3aa3035

Browse files
committed
freeze junit
1 parent 99aa350 commit 3aa3035

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,19 @@ updates:
66
interval: weekly
77
open-pull-requests-limit: 10
88
ignore:
9-
- dependency-name: "jakarta.inject:jakarta.inject-api"
9+
- dependency-name: "jakarta.inject:jakarta.inject-api"
10+
# --- Configuration to ignore all JUnit dependencies (e.g., 5.x) ---
11+
# Ignores all artifacts with Group ID 'org.junit.jupiter' (e.g., api, engine, params)
12+
- dependency-name: "org.junit.jupiter:*"
13+
# Ignores all artifacts with Group ID 'org.junit.platform' (e.g., launcher, suite)
14+
- dependency-name: "org.junit.platform:*"
15+
# Ignores the JUnit Vintage Engine
16+
- dependency-name: "org.junit.vintage:*"
17+
# -----------------------------------------------------------------------
1018
groups:
1119
dependencies:
1220
patterns:
13-
- "*"
21+
- "*"
1422
labels:
1523
- "dependencies"
1624
target-branch: "master"
@@ -24,4 +32,4 @@ updates:
2432
prefix: "[workflow]"
2533
labels:
2634
- "dependencies"
27-
target-branch: "master"
35+
target-branch: "master"

inject-test/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<description>testing support for avaje-inject dependency injection</description>
1313

1414
<properties>
15-
<jupiter.version>6.0.0</jupiter.version>
15+
<jupiter.version>5.13.4</jupiter.version>
1616
<mockito.version>5.20.0</mockito.version>
1717
</properties>
1818

@@ -140,7 +140,7 @@
140140
<dependency>
141141
<groupId>ch.qos.logback</groupId>
142142
<artifactId>logback-classic</artifactId>
143-
<version>1.5.19</version>
143+
<version>1.5.18</version>
144144
<scope>test</scope>
145145
</dependency>
146146

0 commit comments

Comments
 (0)