diff options
-rw-r--r-- | pom.xml | 2 | ||||
-rw-r--r-- | sdc-distribution-client/pom.xml | 10 |
2 files changed, 9 insertions, 3 deletions
@@ -37,7 +37,7 @@ <httpclient.version>4.5.13</httpclient.version> <httpcore.version>4.4.14</httpcore.version> <logback.version>1.2.3</logback.version> - <junit.version>4.12</junit.version> + <junit.version>5.7.0</junit.version> <snakeyaml.version>1.27</snakeyaml.version> <guava.version>30.0-jre</guava.version> <jetty.version>9.4.35.v20201120</jetty.version> diff --git a/sdc-distribution-client/pom.xml b/sdc-distribution-client/pom.xml index d4effc6..4680ff7 100644 --- a/sdc-distribution-client/pom.xml +++ b/sdc-distribution-client/pom.xml @@ -129,8 +129,14 @@ </dependency> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter</artifactId> + <version>${junit.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.vintage</groupId> + <artifactId>junit-vintage-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> |