Created
September 5, 2018 16:54
-
-
Save ripper2hl/f69e72436b651230c35f4574a5baf657 to your computer and use it in GitHub Desktop.
Ejemplo de como excluir la sobrescritura del wildfly en las librerias de un WAR, este archivo debe ir en la carpeta META-INF
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> | |
<deployment> | |
<!-- Exclusions allow you to prevent the server from automatically adding some dependencies --> | |
<exclusions> | |
<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