diff options
author | Michael Mokry <mm117s@att.com> | 2018-10-04 15:50:05 -0500 |
---|---|---|
committer | Michael Mokry <michael.mokry@att.com> | 2018-10-04 16:08:12 -0500 |
commit | 00bd1cd070e64e752bb1a0b61d2bf3b398dd2924 (patch) | |
tree | d396511596cafee1d92f07a59ccf84218b139f03 /POLICY-SDK-APP/pom.xml | |
parent | 3e8154370058fa38dec06b6d224fc8f3825dd5a4 (diff) |
Fixed issue with springframework dependencies
Added exclusions to epsdk dependencies and added dependencies for
springframework jars that were needed to the ONAP-SDK-APP
Change-Id: I037ffa76d3d32b2db5ea2c439f40e8a86e1665f5
Issue-ID: POLICY-1154
Signed-off-by: Michael Mokry <michael.mokry@att.com>
Diffstat (limited to 'POLICY-SDK-APP/pom.xml')
-rw-r--r-- | POLICY-SDK-APP/pom.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/POLICY-SDK-APP/pom.xml b/POLICY-SDK-APP/pom.xml index d255c7c21..eed94341c 100644 --- a/POLICY-SDK-APP/pom.xml +++ b/POLICY-SDK-APP/pom.xml @@ -98,6 +98,19 @@ <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> </exclusion> + <!-- Added exclusions to fix issue with duplicate jars of different versions --> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-web</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-webmvc</artifactId> + </exclusion> </exclusions> </dependency> <!-- Spring --> |