Skip to content

Commit e13319a

Browse files
committed
PP-14349 suppress Junit5 upgrade
We don't want to upgrade to Dropwizard 5.x just yet
1 parent 8cb7561 commit e13319a

File tree

3 files changed

+21
-12
lines changed

3 files changed

+21
-12
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ updates:
2525
schedule:
2626
interval: weekly
2727
time: "03:00"
28+
ignore:
29+
- dependency-name: "io.dropwizard.modules:dropwizard-testing-junit4"
30+
# We don't want to upgrade to Dropwizard 5.x just yet
31+
versions:
32+
- ">= 5"
2833
open-pull-requests-limit: 10
2934
- package-ecosystem: maven
3035
directory: "/utils-dropwizard-4"
@@ -49,6 +54,11 @@ updates:
4954
schedule:
5055
interval: weekly
5156
time: "03:00"
57+
ignore:
58+
- dependency-name: "io.dropwizard.modules:dropwizard-testing-junit4"
59+
# We don't want to upgrade to Dropwizard 5.x just yet
60+
versions:
61+
- ">= 5"
5262
open-pull-requests-limit: 10
5363
- package-ecosystem: maven
5464
directory: "/validation-dropwizard-4"

logging-dropwizard-4/pom.xml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,13 @@
5050

5151
<!-- Test dependencies that are imported from one of the BOMs specified
5252
in <dependencyManagement> in the parent POM, so no explicit versions needed -->
53+
<!-- <dependency>-->
54+
<!-- <groupId>io.dropwizard.modules</groupId>-->
55+
<!-- <artifactId>dropwizard-testing-junit4</artifactId>-->
56+
<!-- <scope>test</scope>-->
57+
<!-- </dependency>-->
5358

5459
<!-- Test dependencies that need explicit versions -->
55-
<dependency>
56-
<groupId>io.dropwizard.modules</groupId>
57-
<artifactId>dropwizard-testing-junit4</artifactId>
58-
<version>4.0.16</version>
59-
<scope>test</scope>
60-
</dependency>
6160
<dependency>
6261
<groupId>org.hamcrest</groupId>
6362
<artifactId>hamcrest</artifactId>

model-dropwizard-4/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@
4949

5050
<!-- Test dependencies that are imported from one of the BOMs specified
5151
in <dependencyManagement> in the parent POM, so no explicit versions needed -->
52-
<dependency>
53-
<groupId>io.dropwizard.modules</groupId>
54-
<artifactId>dropwizard-testing-junit4</artifactId>
55-
<version>4.0.16</version>
56-
<scope>test</scope>
57-
</dependency>
52+
<!-- <dependency>-->
53+
<!-- <groupId>io.dropwizard.modules</groupId>-->
54+
<!-- <artifactId>dropwizard-testing-junit4</artifactId>-->
55+
<!-- <scope>test</scope>-->
56+
<!-- </dependency>-->
57+
5858
<!-- Test dependencies that need explicit versions -->
5959
</dependencies>
6060

0 commit comments

Comments
 (0)