Skip to content

Commit

Permalink
Exclude provided jackson libraries on wildfly 9
Browse files Browse the repository at this point in the history
The jackson implementation provided by wildfly 9 is the version 2.5.1.
As this version of the library is afflicted by this bug
FasterXML/jackson-databind#735 and is loaded
by default we need to exclude it.
  • Loading branch information
Alberto Brigandì committed Mar 8, 2016
1 parent 45bdcaa commit f0d877e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/main/webapp/WEB-INF/jboss-deployment-structure.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<jboss-deployment-structure>
<deployment>
<exclusions>
<!-- Exclude jackson implementation provided by Wildfly 9 (2.5.1)
because of https://github.com/FasterXML/jackson-databind/issues/735 -->
<module name="org.jboss.resteasy.resteasy-jackson2-provider" />
</exclusions>
</deployment>
</jboss-deployment-structure>

0 comments on commit f0d877e

Please sign in to comment.