diff options
author | Chuanyu Chen <chenchuanyu@huawei.com> | 2017-10-19 09:36:32 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-10-19 09:36:32 +0000 |
commit | f2cc7284ebee1ac9159a95a8666467b4d85328f8 (patch) | |
tree | af864450609cc0779c2cc5962c3c19620a4f2a92 /adapters/mso-vfc-adapter/WebContent/WEB-INF/jboss-deployment-structure.xml | |
parent | e4dcd8481197a791dad33d59e39d4129ed8eec59 (diff) | |
parent | a13d6f4c3dd6d4c38d1f9cd97ac9fd377f580a4b (diff) |
Merge "Deal With Error Response from Vfc"
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>
|