Minimal configuration
The most basic configuration of the plugin is to simply tell the plugin the default goal to execute and where to deploy artifacts:
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jboss-deploy-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jboss-deploy</goal>
</goals>
</execution>
</executions>
<configuration>
<jbossDeployRoot>file:///path/to/deploy</jbossDeployRoot>
</configuration>
</plugin>
Additional information and examples can be found here .