aboutsummaryrefslogtreecommitdiffstats
path: root/appc-config/appc-config-params/provider
diff options
context:
space:
mode:
authorPatrick Brady <patrick.brady@att.com>2019-06-05 11:15:13 -0700
committerPatrick Brady <patrick.brady@att.com>2019-06-05 12:42:32 -0700
commit5cebfc154b696f160faa0d68cf6f2c7c0d02a5ef (patch)
tree99a906a0ceaf87e6a9901d93b0930a10b13c956d /appc-config/appc-config-params/provider
parent711633d76d82e9fef066e9c8ed01f2c21ded1678 (diff)
Fix for jackson annotation1.5.2
Fasterxml jackson annotations was not available during runtime and was causing json property annotations to be ignored and json was not parsing. Change-Id: I7cbd71802851b748434159d98914184ae3f72a64 Signed-off-by: Patrick Brady <patrick.brady@att.com> Issue-ID: APPC-1613
Diffstat (limited to 'appc-config/appc-config-params/provider')
-rw-r--r--appc-config/appc-config-params/provider/pom.xml8
1 files changed, 3 insertions, 5 deletions
diff --git a/appc-config/appc-config-params/provider/pom.xml b/appc-config/appc-config-params/provider/pom.xml
index 06fad5d32..0a9b9debc 100644
--- a/appc-config/appc-config-params/provider/pom.xml
+++ b/appc-config/appc-config-params/provider/pom.xml
@@ -69,8 +69,8 @@
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-annotations</artifactId>
+ <groupId>com.fasterxml.jackson.module</groupId>
+ <artifactId>jackson-module-jaxb-annotations</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
@@ -121,10 +121,8 @@
org.onap.sdnc.config.params.parser,org.onap.sdnc.config.params.transformer,
org.onap.sdnc.config.params.transformer.tosca,org.onap.sdnc.config.params.transformer.tosca.exceptions</Export-Package>
<Import-Package>groovy.lang;resolution:=optional,org.codehaus.groovy.*;resolution:=optional,!com.google.common.collect,*</Import-Package>
- <Embed-Dependency>guava,jackson-databind,jackson-annotations,jackson-core,jackson-dataformat-yaml,eelf-core,logback-core,logback-classic</Embed-Dependency>
- <DynamicImport-Package>*</DynamicImport-Package>
+ <Embed-Dependency>guava,jackson-databind,jackson-core,jackson-dataformat-yaml,eelf-core,logback-core,logback-classic</Embed-Dependency>
</instructions>
- <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
</configuration>
</plugin>
</plugins>