Skip to content

robbieg/maven-jrebel-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JRebel Maven plugin

This plugin is used to generate the rebel.xml configuration file for JRebel. Requires Maven 3.0 or newer (use JRebel Maven plugin version 1.1.5 for Maven 2.x projects).

For more information, please refer to JRebel documentation at: https://manuals.zeroturnaround.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.1.7</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.

About

Generates rebel.xml configuration file for the maven project

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%