diff options
author | Taka Cho <takamune.cho@att.com> | 2019-10-15 10:00:29 -0400 |
---|---|---|
committer | Taka Cho <takamune.cho@att.com> | 2019-10-15 10:01:21 -0400 |
commit | c13a9c95e47b072afb701ad490480036ef36db26 (patch) | |
tree | 072d8e311421c8d82e72fbd4373cb48098b03da7 /appc-inbound | |
parent | 4d410791f30d1da1224faf10e970829b55127795 (diff) |
update mockito version in APPC
sonar does not take the test coverage from
parent pom file
Issue-ID: APPC-1767
Change-Id: Ic6530ddc553b404f49937d61481ca2e076362e64
Signed-off-by: Taka Cho <takamune.cho@att.com>
Diffstat (limited to 'appc-inbound')
-rwxr-xr-x | appc-inbound/appc-artifact-handler/provider/pom.xml | 8 | ||||
-rwxr-xr-x | appc-inbound/appc-design-services/provider/pom.xml | 32 | ||||
-rw-r--r-- | appc-inbound/appc-interfaces-service/bundle/pom.xml | 7 |
3 files changed, 42 insertions, 5 deletions
diff --git a/appc-inbound/appc-artifact-handler/provider/pom.xml b/appc-inbound/appc-artifact-handler/provider/pom.xml index b48fdf789..a1b58060a 100755 --- a/appc-inbound/appc-artifact-handler/provider/pom.xml +++ b/appc-inbound/appc-artifact-handler/provider/pom.xml @@ -126,12 +126,20 @@ limitations under the License. </dependency> <dependency> <groupId>org.powermock</groupId> + <artifactId>powermock-module-junit4</artifactId> + <version>1.6.4</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> + <version>1.6.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> + <version>1.10.19</version> <scope>test</scope> </dependency> <dependency> diff --git a/appc-inbound/appc-design-services/provider/pom.xml b/appc-inbound/appc-design-services/provider/pom.xml index 5986bc9eb..6d50442f8 100755 --- a/appc-inbound/appc-design-services/provider/pom.xml +++ b/appc-inbound/appc-design-services/provider/pom.xml @@ -184,15 +184,39 @@ <artifactId>commons-io</artifactId> </dependency> <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <version>1.10.19</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-api-mockito</artifactId> + <version>1.6.4</version> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.powermock</groupId> - <artifactId>powermock-module-junit4-rule-agent</artifactId> - <version>1.6.5</version> + <artifactId>powermock-module-junit4</artifactId> + <version>1.6.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> - <artifactId>powermock-api-mockito-common</artifactId> - <version>1.6.5</version> + <artifactId>powermock-api-support</artifactId> + <version>1.6.4</version> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-core</artifactId> + <version>1.6.4</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-reflect</artifactId> + <version>1.6.4</version> + <scope>test</scope> </dependency> </dependencies> <version>1.7.0-SNAPSHOT</version> diff --git a/appc-inbound/appc-interfaces-service/bundle/pom.xml b/appc-inbound/appc-interfaces-service/bundle/pom.xml index dcb0b385a..8cfd0d6de 100644 --- a/appc-inbound/appc-interfaces-service/bundle/pom.xml +++ b/appc-inbound/appc-interfaces-service/bundle/pom.xml @@ -82,7 +82,12 @@ <artifactId>junit</artifactId> <scope>test</scope> </dependency> - + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <version>1.10.19</version> + <scope>test</scope> + </dependency> <dependency> <groupId>org.opendaylight.controller</groupId> <artifactId>config-api</artifactId> |