diff options
author | Rob Daugherty <rd472p@att.com> | 2017-10-03 03:54:32 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-10-03 03:54:32 +0000 |
commit | df7aa9c0da625cc734f3ee347f6d1f0a19e8f87c (patch) | |
tree | ab2e1751040ffea0bba4dac58eca94bc30428247 /adapters/mso-tenant-adapter/WebContent/WEB-INF/jboss-deployment-structure.xml | |
parent | c36fb6e5e6eaaa12ae3a2a2e5b23c65ea40caa6c (diff) | |
parent | 3590470cd6941f6e7d54861f92e5c62a00c99c5c (diff) |
Merge "Prevent JAXRS LinkageError"
Diffstat (limited to 'adapters/mso-tenant-adapter/WebContent/WEB-INF/jboss-deployment-structure.xml')
-rw-r--r-- | adapters/mso-tenant-adapter/WebContent/WEB-INF/jboss-deployment-structure.xml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/adapters/mso-tenant-adapter/WebContent/WEB-INF/jboss-deployment-structure.xml b/adapters/mso-tenant-adapter/WebContent/WEB-INF/jboss-deployment-structure.xml index 58ddb4a08f..fb268917f2 100644 --- a/adapters/mso-tenant-adapter/WebContent/WEB-INF/jboss-deployment-structure.xml +++ b/adapters/mso-tenant-adapter/WebContent/WEB-INF/jboss-deployment-structure.xml @@ -5,12 +5,17 @@ <module name="org.apache.log4j" />
<module name="org.slf4j" />
<module name="org.slf4j.impl" />
+ <module name="org.jboss.resteasy.resteasy-jackson-provider" />
+ <module name="org.jboss.resteasy.resteasy-jettison-provider" />
</exclusions>
<dependencies>
<module name="org.jboss.jandex" slot="main" />
<module name="org.javassist" slot="main" />
<module name="org.antlr" slot="main" />
<module name="org.dom4j" slot="main" />
+ <module name="org.jboss.resteasy.resteasy-jackson2-provider" services="import" />
+ <!-- This module contain the ProviderBase class: -->
+ <module name="com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider" export="true" />
</dependencies>
</deployment>
-</jboss-deployment-structure>
\ No newline at end of file +</jboss-deployment-structure>
|