diff options
author | c00149107 <chenchuanyu@huawei.com> | 2017-10-18 11:48:21 +0800 |
---|---|---|
committer | c00149107 <chenchuanyu@huawei.com> | 2017-10-19 14:12:16 +0800 |
commit | a13d6f4c3dd6d4c38d1f9cd97ac9fd377f580a4b (patch) | |
tree | a370ad9261b9cde7455a1cc3bf80444a58ecf5ce /adapters/mso-vfc-adapter/WebContent/WEB-INF/jboss-deployment-structure.xml | |
parent | 61354fab1e3c8783fd6a2ff5fcf7d1997fd999b5 (diff) |
Deal With Error Response from Vfc
Deal With Error Response from Vfc
Change-Id: Id5ce999d561099581b49524969c901ac6dac3f90
Issue-ID:SO-233
Signed-off-by: c00149107 <chenchuanyu@huawei.com>
Diffstat (limited to 'adapters/mso-vfc-adapter/WebContent/WEB-INF/jboss-deployment-structure.xml')
-rw-r--r-- | adapters/mso-vfc-adapter/WebContent/WEB-INF/jboss-deployment-structure.xml | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/adapters/mso-vfc-adapter/WebContent/WEB-INF/jboss-deployment-structure.xml b/adapters/mso-vfc-adapter/WebContent/WEB-INF/jboss-deployment-structure.xml index e7bc08ae83..fb268917f2 100644 --- a/adapters/mso-vfc-adapter/WebContent/WEB-INF/jboss-deployment-structure.xml +++ b/adapters/mso-vfc-adapter/WebContent/WEB-INF/jboss-deployment-structure.xml @@ -1,17 +1,21 @@ <jboss-deployment-structure>
<deployment>
- <!-- Exclusions allow you to prevent the server from automatically adding
- some dependencies -->
+ <!-- Exclusions allow you to prevent the server from automatically adding some dependencies -->
<exclusions>
<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.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>
|