This plugin is used to generate the rebel.xml configuration file for JRebel. Requires Maven 3.2.5 or newer.
For more information, please refer to JRebel documentation at: https://manuals.jrebel.com/jrebel/standalone/maven.html
Add the following snippet to the pom.xml of your Maven project to generate the rebel.xml configuration:
<plugin>
<groupId>org.zeroturnaround</groupId>
<artifactId>jrebel-maven-plugin</artifactId>
<version>1.2.0</version>
<executions>
<execution>
<id>generate-rebel-xml</id>
<phase>process-resources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
To manually execute the goal, run 'mvn jrebel:generate' and rebel.xml will be generated in the target directory.