diff options
Diffstat (limited to 'binding-parent')
-rw-r--r-- | binding-parent/pom.xml | 45 |
1 files changed, 43 insertions, 2 deletions
diff --git a/binding-parent/pom.xml b/binding-parent/pom.xml index 50508aa..789d594 100644 --- a/binding-parent/pom.xml +++ b/binding-parent/pom.xml @@ -31,7 +31,7 @@ limitations under the License. <parent> <groupId>org.onap.ccsdk.parent</groupId> <artifactId>binding-parent</artifactId> - <version>1.3.5</version> + <version>1.4.3</version> <relativePath /> </parent> @@ -152,12 +152,53 @@ limitations under the License. <artifactId>aai-service-provider</artifactId> <version>${sdnctl.aai.service.version}</version> </dependency> - <dependency> <groupId>org.onap.ccsdk.sli.core</groupId> <artifactId>dblib-provider</artifactId> <version>${sdnctl.dblib.version}</version> </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-api-mockito</artifactId> + <version>1.6.4</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.javassist</groupId> + <artifactId>javassist</artifactId> + <version>3.21.0-GA</version> + <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.powermock</groupId> + <artifactId>powermock-module-junit4</artifactId> + <version>1.6.4</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-api-support</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> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-core</artifactId> + <version>1.6.4</version> + <scope>test</scope> + </dependency> </dependencies> </dependencyManagement> |