Skip to content

Instantly share code, notes, and snippets.

@ripper2hl
Created September 5, 2018 16:54
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Ejemplo de como excluir la sobrescritura del wildfly en las librerias de un WAR, este archivo debe ir en la carpeta META-INF
<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