diff options
author | Arthur Martella <amartell@research.att.com> | 2017-10-02 23:00:21 -0400 |
---|---|---|
committer | Arthur Martella <amartell@research.att.com> | 2017-10-02 23:00:21 -0400 |
commit | 3590470cd6941f6e7d54861f92e5c62a00c99c5c (patch) | |
tree | 16dbc734c2000033d64e9e6290c504068d72cc66 /adapters/mso-tenant-adapter | |
parent | 5ee2a9cd718537669b8b5ce234fbc222c6def199 (diff) |
Prevent JAXRS LinkageError
Pruning the inclusions in modules to prevent linkage errors during health check.
Change-Id: I7b3cb233d0eac2a0a41b15e608d3d295a73573e7
Issue-ID: SO-160
Signed-off-by: Arthur Martella <amartell@research.att.com>
Diffstat (limited to 'adapters/mso-tenant-adapter')
-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>
|