Skip to content

Instantly share code, notes, and snippets.

@darkrodry
Created April 13, 2016 23:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darkrodry/11a8cb1b439f9b417bc0c025a39bbd22 to your computer and use it in GitHub Desktop.
Save darkrodry/11a8cb1b439f9b417bc0c025a39bbd22 to your computer and use it in GitHub Desktop.
Configuración del plugin de Maven para desplegar un war en Liberty
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<warName>warfilename</warName>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment