Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.53 KB

README.md

File metadata and controls

32 lines (25 loc) · 1.53 KB

JRebel Maven plugin

Build Status Quality Gate License Maven metadata

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

Usage

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.