diff options
author | koblosz <sandra.koblosz@nokia.com> | 2018-08-20 16:42:57 +0200 |
---|---|---|
committer | koblosz <sandra.koblosz@nokia.com> | 2018-08-21 09:28:10 +0200 |
commit | d47fd3bfc9aa456091c356122d149166e853f953 (patch) | |
tree | f61315b2d6b716d54414b43d458e02fc969011d3 /vid-app-common/pom.xml | |
parent | 6447784fdd770e8a2b4ef2c52ba206d35c0fd325 (diff) |
VID-266 added stub server for testing
Change-Id: I39b8fca2df4c45123e2308142dfbb43c737f7707
Issue-ID: VID-266
Signed-off-by: Koblosz, Sandra <sandra.koblosz@nokia.com>
Diffstat (limited to 'vid-app-common/pom.xml')
-rwxr-xr-x | vid-app-common/pom.xml | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/vid-app-common/pom.xml b/vid-app-common/pom.xml index 6ae5056ac..b8fbd853a 100755 --- a/vid-app-common/pom.xml +++ b/vid-app-common/pom.xml @@ -250,7 +250,14 @@ <artifactId>opencsv</artifactId>
<version>4.1</version>
</dependency>
-
+
+ <!-- HTTP client -->
+ <dependency>
+ <groupId>com.xebialabs.restito</groupId>
+ <artifactId>restito</artifactId>
+ <version>0.9.3</version>
+ <scope>test</scope>
+ </dependency>
<!-- SDK overlay war -->
@@ -502,5 +509,11 @@ <artifactId>togglz-spring-core</artifactId>
<version>2.5.0.Final</version>
</dependency>
+ <dependency>
+ <groupId>org.assertj</groupId>
+ <artifactId>assertj-core</artifactId>
+ <version>3.10.0</version>
+ <scope>compile</scope>
+ </dependency>
</dependencies>
</project>
|