Skip to content

Instantly share code, notes, and snippets.

@stephanetimmermans
stephanetimmermans / maven-exploded-war-jboss
Created December 5, 2012 07:50
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>