diff options
author | Patrick Brady <patrick.brady@att.com> | 2019-02-27 13:41:53 -0800 |
---|---|---|
committer | Patrick Brady <patrick.brady@att.com> | 2019-02-27 21:55:11 +0000 |
commit | 924616740bdf5f596bd6f32dac32c1a8e5504650 (patch) | |
tree | 83d09b9419211d8671a7d043a3d784bad5aba102 /appc-outbound/appc-network-inventory-client/provider/pom.xml | |
parent | 32ad33f14a955b10fca06ae457267deb2ff50abd (diff) |
Fix failing powermock tests
The version of javassist coming from opendaylight is not working correctly
with powermock. Adding a test scoped dependency for a working version of
javassist.
Test classes added in this commit are not new, they were temporarily
removed as part of https://gerrit.onap.org/r/#/c/79046/
Change-Id: I193873c0d4abd7b11592a95bff9a6b07cf2d7191
Signed-off-by: Patrick Brady <patrick.brady@att.com>
Issue-ID: APPC-1277
Diffstat (limited to 'appc-outbound/appc-network-inventory-client/provider/pom.xml')
-rwxr-xr-x | appc-outbound/appc-network-inventory-client/provider/pom.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/appc-outbound/appc-network-inventory-client/provider/pom.xml b/appc-outbound/appc-network-inventory-client/provider/pom.xml index 1d9f21581..ab4e39f13 100755 --- a/appc-outbound/appc-network-inventory-client/provider/pom.xml +++ b/appc-outbound/appc-network-inventory-client/provider/pom.xml @@ -3,7 +3,7 @@ ============LICENSE_START=======================================================
ONAP : APPC
================================================================================
- Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
+ Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
================================================================================
Copyright (C) 2017 Amdocs
=============================================================================
@@ -86,6 +86,12 @@ <scope>test</scope>
</dependency>
<dependency>
+ <groupId>org.javassist</groupId>
+ <artifactId>javassist</artifactId>
+ <version>3.22.0-GA</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>org.onap.appc</groupId>
<artifactId>appc-config-params-provider</artifactId>
<version>${project.version}</version>
|