diff options
author | Jim Hahn <jrh3@att.com> | 2018-06-25 17:23:02 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2018-06-25 17:40:04 -0400 |
commit | d8a6909ef0bb3433265295107b1450122eac919a (patch) | |
tree | 8a625e85a2712c96fb10d53dae2cb33ac9c6ce65 /policy-core/pom.xml | |
parent | b5a47dcb16af9e90e46d08d0b5faedb3302bca8b (diff) |
Added expiration timer to default locking strategy
Fixed comment (missing "}").
Changed default age from 15 hours to 15 minutes.
Only increment test time by 1 when testing hashCode.
Change-Id: I70ef6cfd34e31ded45b3975f33e5b0ba22afa627
Issue-ID: POLICY-912
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'policy-core/pom.xml')
-rw-r--r-- | policy-core/pom.xml | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/policy-core/pom.xml b/policy-core/pom.xml index b6d394c3..cc41b215 100644 --- a/policy-core/pom.xml +++ b/policy-core/pom.xml @@ -30,6 +30,11 @@ <version>1.3.0-SNAPSHOT</version> </parent> + <properties> + <powermock.version>1.6.6</powermock.version> + </properties> + + <dependencies> <!-- Issue: 1 of 2 @@ -100,9 +105,15 @@ <scope>test</scope> </dependency> <dependency> - <groupId>org.mockito</groupId> - <artifactId>mockito-core</artifactId> - <version>2.13.0</version> + <groupId>org.powermock</groupId> + <artifactId>powermock-api-mockito</artifactId> + <version>${powermock.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.onap.policy.common</groupId> + <artifactId>utils-test</artifactId> + <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> |