diff options
author | Tomasz Golabek <tomasz.golabek@nokia.com> | 2019-08-21 09:18:38 +0200 |
---|---|---|
committer | Piotr Darosz <piotr.darosz@nokia.com> | 2019-08-21 19:22:46 +0000 |
commit | cc78e0cd74b11e96d3f9c3e9fa60a7330c9f75b0 (patch) | |
tree | 74add2d2563d5eee4067a30edf312f54e7b1d7c8 /openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/pom.xml | |
parent | c1575bf70836a4f9cb870653303d3907888fc7dc (diff) |
unit tests - sdc-common-rest
Additional junit tests
Change-Id: Ieeb6f02e1d5abf131882c530a0ba3a395d56c6cd
Issue-ID: SDC-2326
Signed-off-by: Tomasz Golabek <tomasz.golabek@nokia.com>
Diffstat (limited to 'openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/pom.xml')
-rw-r--r-- | openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/pom.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/pom.xml b/openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/pom.xml index 71552b75c4..c9c70ab804 100644 --- a/openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/pom.xml +++ b/openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/pom.xml @@ -27,6 +27,10 @@ <version>1.5.1-SNAPSHOT</version> </parent> + <properties> + <jersey-common.version>2.22.2</jersey-common.version> + </properties> + <dependencies> <dependency> <groupId>org.openecomp.sdc</groupId> @@ -77,6 +81,23 @@ <artifactId>junit</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.glassfish.jersey.core</groupId> + <artifactId>jersey-common</artifactId> + <version>${jersey-common.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>com.google.code.bean-matchers</groupId> + <artifactId>bean-matchers</artifactId> + <version>${bean-matchers.version}</version> + <scope>test</scope> + </dependency> </dependencies> </project> |