diff options
author | 2018-06-21 19:54:37 +0000 | |
---|---|---|
committer | 2018-06-21 19:54:37 +0000 | |
commit | ec62d8d34ae4724b81d29f6314951c277f423ba4 (patch) | |
tree | c1cb7ca4c4ade0a656bec12c248702b8ce34628c /common-logging/pom.xml | |
parent | 88116de291b4200b0d4dfbdfce492d009293dad8 (diff) | |
parent | 902d573db953fd2ac0526717f9d0bc8fbd2ddbed (diff) |
Merge "PropertyUtil: remove sleep when running junit test"
Diffstat (limited to 'common-logging/pom.xml')
-rw-r--r-- | common-logging/pom.xml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/common-logging/pom.xml b/common-logging/pom.xml index 82849b93..747e4b2a 100644 --- a/common-logging/pom.xml +++ b/common-logging/pom.xml @@ -2,7 +2,7 @@ ============LICENSE_START======================================================= ONAP Policy Engine - Common Modules ================================================================================ - Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + Copyright (C) 2017-2018 AT&T Intellectual Property. 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. @@ -31,6 +31,10 @@ <artifactId>ONAP-Logging</artifactId> <description>ONAP Logging Framework</description> <packaging>jar</packaging> + + <properties> + <powermock.version>1.6.6</powermock.version> + </properties> <dependencies> <dependency> @@ -54,6 +58,12 @@ <artifactId>eelf-core</artifactId> <version>1.0.1-oss</version> </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-api-mockito</artifactId> + <version>${powermock.version}</version> + <scope>test</scope> + </dependency> </dependencies> <build> |