This plugin allows maven based projects to deploy project artifacts (jars, etc) to the legacy ant/buildmagic based repository. Deployment to the standard maven repository should be done using the standard maven-deploy-plugin. The main features of this plugin include generating a component-info.xml file, and copying project artifacts to a local directory which contains a checkout of the ant repository.
Note: when using this plugin it may be necessary to visually inspect the generated component-info.xml file to be sure that everything is correct.
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 .