Skip to content

Instantly share code, notes, and snippets.

@stephanetimmermans
Created December 5, 2012 07:50
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 stephanetimmermans/4213580 to your computer and use it in GitHub Desktop.
Save stephanetimmermans/4213580 to your computer and use it in GitHub Desktop.
Deploy exploded archives on JBoss with IDEA
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<webappDirectory>${project.build.directory}/${project.build.finalName}-exploded.war</webappDirectory>
<warName>${project.name}</warName>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment