diff options
Diffstat (limited to 'integration')
-rw-r--r-- | integration/pom.xml | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/integration/pom.xml b/integration/pom.xml index cf4ed219..22713b07 100644 --- a/integration/pom.xml +++ b/integration/pom.xml @@ -1,6 +1,7 @@ <!-- ============LICENSE_START======================================================= Copyright (C) 2018 Ericsson. All rights reserved. + Modifications Copyright (C) 2018 AT&T. All rights reserved. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -37,6 +38,7 @@ <maven.compiler.target>1.8</maven.compiler.target> <version.logback>1.2.3</version.logback> <version.dmaap>1.1.8</version.dmaap> + <version.powermock>1.7.4</version.powermock> </properties> <distributionManagement> @@ -200,7 +202,19 @@ <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-core</artifactId> - <version>1.7.4</version> + <version>${version.powermock}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-api-mockito</artifactId> + <version>${version.powermock}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-module-junit4</artifactId> + <version>${version.powermock}</version> <scope>test</scope> </dependency> <dependency> |