aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--adapters/mso-requests-db-adapter/pom.xml5
-rw-r--r--graph-inventory/aai-client/pom.xml5
-rw-r--r--so-optimization-clients/pom.xml5
-rw-r--r--so-sdn-clients/pom.xml5
-rw-r--r--so-sdn-clients/src/test/java/org/onap/so/client/sdnc/SDNCClientIT.java8
5 files changed, 24 insertions, 4 deletions
diff --git a/adapters/mso-requests-db-adapter/pom.xml b/adapters/mso-requests-db-adapter/pom.xml
index 066e3e6dc5..0f9582e698 100644
--- a/adapters/mso-requests-db-adapter/pom.xml
+++ b/adapters/mso-requests-db-adapter/pom.xml
@@ -27,6 +27,11 @@
<scope>test</scope>
</dependency>
<dependency>
+ <groupId>org.junit.vintage</groupId>
+ <artifactId>junit-vintage-engine</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
</dependency>
diff --git a/graph-inventory/aai-client/pom.xml b/graph-inventory/aai-client/pom.xml
index c47f529ddd..fefefa941c 100644
--- a/graph-inventory/aai-client/pom.xml
+++ b/graph-inventory/aai-client/pom.xml
@@ -238,5 +238,10 @@
<artifactId>antlr4-runtime</artifactId>
<version>4.7</version>
</dependency>
+ <dependency>
+ <groupId>org.junit.vintage</groupId>
+ <artifactId>junit-vintage-engine</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
</project>
diff --git a/so-optimization-clients/pom.xml b/so-optimization-clients/pom.xml
index c51ef8998b..2abcc656d3 100644
--- a/so-optimization-clients/pom.xml
+++ b/so-optimization-clients/pom.xml
@@ -67,6 +67,11 @@
<scope>test</scope>
</dependency>
<dependency>
+ <groupId>org.junit.vintage</groupId>
+ <artifactId>junit-vintage-engine</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
diff --git a/so-sdn-clients/pom.xml b/so-sdn-clients/pom.xml
index 1036de6891..a580233641 100644
--- a/so-sdn-clients/pom.xml
+++ b/so-sdn-clients/pom.xml
@@ -97,6 +97,11 @@
<scope>test</scope>
</dependency>
<dependency>
+ <groupId>org.junit.vintage</groupId>
+ <artifactId>junit-vintage-engine</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>org.onap.sdnc.northbound</groupId>
<artifactId>generic-resource-api-client</artifactId>
<version>${sdnc.northbound.version}</version>
diff --git a/so-sdn-clients/src/test/java/org/onap/so/client/sdnc/SDNCClientIT.java b/so-sdn-clients/src/test/java/org/onap/so/client/sdnc/SDNCClientIT.java
index 0b338bde1d..111687fefe 100644
--- a/so-sdn-clients/src/test/java/org/onap/so/client/sdnc/SDNCClientIT.java
+++ b/so-sdn-clients/src/test/java/org/onap/so/client/sdnc/SDNCClientIT.java
@@ -7,9 +7,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -55,7 +55,7 @@ public class SDNCClientIT extends BaseIntegrationTest {
String responseJson =
new String(Files.readAllBytes(Paths.get(JSON_FILE_LOCATION + "SDNCClientPut404Response.json")));
- String queryLink = "/restconf/operations/GENERIC-RESOURCE-API:network-topology-operation/";
+ String queryLink = "/restconf/operations/GENERIC-RESOURCE-API:network-topology-operation";
wireMockServer.stubFor(post(urlMatching(queryLink)).willReturn(
aResponse().withStatus(200).withHeader("Content-Type", "application/json").withBody(responseJson)));
@@ -68,7 +68,7 @@ public class SDNCClientIT extends BaseIntegrationTest {
String responseJson =
new String(Files.readAllBytes(Paths.get(JSON_FILE_LOCATION + "SDNCClientPut200Response.json")));
- String queryLink = "/restconf/operations/GENERIC-RESOURCE-API:network-topology-operation/";
+ String queryLink = "/restconf/operations/GENERIC-RESOURCE-API:network-topology-operation";
wireMockServer.stubFor(post(urlMatching(queryLink)).willReturn(
aResponse().withStatus(200).withHeader("Content-Type", "application/json").withBody(responseJson)));