Forked from akerekes/jboss-deployment-structure.xml
Last active
November 17, 2015 16:41
-
-
Save sohlich/2bd65beecf427f9b5051 to your computer and use it in GitHub Desktop.
JBoss deployment structure file to disable container provided logging
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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