Fix rules-test missing junit-jupiter at compile scope. 89/138289/1
authoradheli.tavares <adheli.tavares@est.tech>
Thu, 20 Jun 2024 09:29:15 +0000 (10:29 +0100)
committeradheli.tavares <adheli.tavares@est.tech>
Thu, 20 Jun 2024 09:35:21 +0000 (10:35 +0100)
Issue-ID: POLICY-5054
Change-Id: Idaa4f86d3757f00d962c83c198c2c78b0d2cd69c
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
controlloop/common/rules-test/pom.xml
pom.xml

index b0e67fb..8769531 100644 (file)
@@ -3,7 +3,7 @@
   ONAP
   ================================================================================
   Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
-  Modifications Copyright (C) 2023 Nordix Foundation.
+  Modifications Copyright (C) 2023-2024 Nordix Foundation.
   ================================================================================
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
             <version>${version.policy.common}</version>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.junit.jupiter</groupId>
+            <artifactId>junit-jupiter-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
     </dependencies>
 </project>
diff --git a/pom.xml b/pom.xml
index 4716fb7..1458732 100644 (file)
--- a/pom.xml
+++ b/pom.xml
             <artifactId>logback-classic</artifactId>
             <scope>provided</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-engine</artifactId>