diff options
author | Abhishek Shekhar <abhishek.shekhar1@amdocs.com> | 2018-02-12 12:12:52 +0530 |
---|---|---|
committer | Abhishek Shekhar <abhishek.shekhar1@amdocs.com> | 2018-02-12 12:12:52 +0530 |
commit | 98ee6f89bed86320a5ca06ed94242f8dcf25a83b (patch) | |
tree | 1359c2f6022576d8621e1504c3fe9896a37a16e6 /pom.xml | |
parent | 05ac1667ec8690ab6a7623938f2d9a462e07aaec (diff) |
Improve the UT of key flows of the SO
Change-Id: Idea793677815edcf53b9433f2fd1da26e7d52512
Issue-ID: SO-369
Signed-off-by: Abhishek Shekhar <abhishek.shekhar1@amdocs.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 38 |
1 files changed, 36 insertions, 2 deletions
@@ -78,6 +78,40 @@ <url>http://repo2.maven.org/maven2/</url> </pluginRepository> </pluginRepositories> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.11</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-all</artifactId> + <version>1.10.19</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-api-mockito</artifactId> + <version>1.6.2</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-module-junit4</artifactId> + <version>1.6.2</version> + </dependency> + <dependency> + <groupId>org.openecomp.so.libs.openstack-java-sdk</groupId> + <artifactId>openstack-client</artifactId> + <version>${project.version}</version> + <type>test-jar</type> + <scope>test</scope> + </dependency> + </dependencies> + </dependencyManagement> <dependencies> <dependency> <groupId>org.codehaus.jackson</groupId> @@ -104,7 +138,7 @@ </configuration> </plugin> </plugins> - </reporting> + </reporting> <build> <pluginManagement> <plugins> @@ -128,7 +162,7 @@ <version>2.10</version> </dependency> </dependencies> - </plugin> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> |