diff options
author | Harish Venkata Kajur <vk250x@att.com> | 2019-04-30 11:02:48 -0400 |
---|---|---|
committer | Harish Venkata Kajur <vk250x@att.com> | 2019-04-30 11:02:51 -0400 |
commit | c748ac22157e97dd0d620ef58b930ad97dc04cfe (patch) | |
tree | 9361b18bf12fbcead0a97d31d0292864e58d18e5 | |
parent | ee010be78898adfb69b82dc04ca9e7378bcda3cd (diff) |
Fix the class not found exception issue4.0.0-ONAP1.4.0
Add the guava dependency 19.0 to
fix the java.lang.NoClassDefFoundError:
com/google/common/util/concurrent/FutureFallback
Issue-ID: AAI-2388
Change-Id: I9c2f763ad5aa1dce97d6dbc4f264bfc0a550fd98
Signed-off-by: Harish Venkata Kajur <vk250x@att.com>
-rw-r--r-- | champ-service-deps-janus/pom.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/champ-service-deps-janus/pom.xml b/champ-service-deps-janus/pom.xml index 1fa571f..f8e519f 100644 --- a/champ-service-deps-janus/pom.xml +++ b/champ-service-deps-janus/pom.xml @@ -34,6 +34,11 @@ limitations under the License. <dependencies> <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>19.0</version> + </dependency> + <dependency> <groupId>org.onap.aai.champ.champ-lib</groupId> <artifactId>champ-janus</artifactId> <version>${project.version}</version> |