diff options
author | 2024-06-11 11:00:03 +0100 | |
---|---|---|
committer | 2024-06-12 16:50:37 +0100 | |
commit | 70e614910a05b3588902a779e996a9c695c4b3d9 (patch) | |
tree | 2dfba2c10513e335c18bfb316cbf5937b2565439 /pom.xml | |
parent | fbe47369f95b3154c879026a196d5b5259e5f130 (diff) |
Convert junit4 to junit5
Issue-ID: POLICY-5041
Change-Id: I6bad59c375dffdc87c31730057ce7b0543754545
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 22 |
1 files changed, 21 insertions, 1 deletions
@@ -28,7 +28,7 @@ <groupId>org.onap.policy.parent</groupId> <artifactId>integration</artifactId> <version>5.0.0-SNAPSHOT</version> - <relativePath /> + <relativePath/> </parent> <groupId>org.onap.policy.apex-pdp</groupId> @@ -88,6 +88,26 @@ <scope>test</scope> </dependency> <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-engine</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-api</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-params</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> </dependency> |