diff options
author | Bogumil Zebek <bogumil.zebek@nokia.com> | 2020-12-16 09:35:11 +0100 |
---|---|---|
committer | Bogumil Zebek <bogumil.zebek@nokia.com> | 2020-12-16 10:03:15 +0000 |
commit | 64079b27bdfff509fe610b1d46e09bdf1e43e4c6 (patch) | |
tree | b0e8738283ffc57d115f4e8cfa12eeead2e8b2a1 /sdc-distribution-client/pom.xml | |
parent | 52c4e486d22d36d7293c19d2f826776bb6aefa0a (diff) |
Preparation to migrate to Junit 5
Issue-ID: SDC-3400
Signed-off-by: Zebek Bogumil <bogumil.zebek@nokia.com>
Change-Id: I34a2d10d0992160ee34f4aedfc19b3384c0fe152
Diffstat (limited to 'sdc-distribution-client/pom.xml')
-rw-r--r-- | sdc-distribution-client/pom.xml | 10 |
1 files changed, 8 insertions, 2 deletions
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> |