Change location of sniro emulator project from intgration/test/mock to integration/test/mocks/sniroemulator
Change-Id: I808525d0d8ec23e785a5f06b7ba43a003a00d6fc
JIRA-ID: INT-215
Signed-off-by: Geora Barsky <georab@amdocs.com>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.onap.integration</groupId>
- <artifactId>mock</artifactId>
+ <artifactId>sniroemulator</artifactId>
<version>1.0-SNAPSHOT</version>
- <name>mock</name>
- <description>onap emulator project based on Spring Boot</description>
+ <name>sniroemulator</name>
+ <description>onap sniro emulator project based on Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
RUN mkdir -p /var/wiremock/lib/
-ADD mock.jar /var/wiremock/lib/app.jar
+ADD sniroemulator.jar /var/wiremock/lib/app.jar
WORKDIR /home/wiremock
-package org.onap.integration.test.mock;
+package org.onap.integration.test.mocks.sniroemulator;
import static com.github.tomakehurst.wiremock.client.ResponseDefinitionBuilder.responseDefinition;
import static com.github.tomakehurst.wiremock.client.WireMock.anyUrl;
mappingsFileSource.createIfNecessary();
// Register extension
- options.extensions("org.onap.integration.test.mock.extension.Webhooks");
+ options.extensions("org.onap.integration.test.mocks.sniroemulator.extension.Webhooks");
// Register notifier
options.notifier(new ConsoleNotifier(true));
wireMockServer = new WireMockServer(options);
-package org.onap.integration.test.mock.extension;
+package org.onap.integration.test.mocks.sniroemulator.extension;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
-package org.onap.integration.test.mock.extension;
+package org.onap.integration.test.mocks.sniroemulator.extension;
import com.github.tomakehurst.wiremock.common.Notifier;
import com.github.tomakehurst.wiremock.core.Admin;
-package org.onap.integration.test.mock;
+package org.onap.integration.test.mocks.sniroemulator;
import org.junit.Test;
import org.junit.runner.RunWith;