Skip to content

Instantly share code, notes, and snippets.

@sohlich
Forked from akerekes/jboss-deployment-structure.xml
Last active November 17, 2015 16:41
Show Gist options
  • Save sohlich/2bd65beecf427f9b5051 to your computer and use it in GitHub Desktop.
Save sohlich/2bd65beecf427f9b5051 to your computer and use it in GitHub Desktop.
JBoss deployment structure file to disable container provided logging
<jboss-deployment-structure xmlns="urn:jboss:deployment-structure:1.2">
<deployment>
<exclusions>
<module name="org.apache.commons.logging" />
<module name="org.apache.log4j" />
<module name="org.jboss.logging" />
<module name="org.jboss.logging.jul-to-slf4j-stub" />
<module name="org.jboss.logmanager" />
<module name="org.jboss.logmanager.log4j" />
<module name="org.slf4j" />
<module name="org.slf4j.impl" />
</exclusions>
</deployment>
</jboss-deployment-structure>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment