Skip to content
This repository has been archived by the owner on Nov 20, 2020. It is now read-only.

Generates rebel.xml configuration file for the maven project

License

Apache-2.0, Apache-2.0 licenses found

Licenses found

Apache-2.0
LICENSE
Apache-2.0
LICENSE.txt
Notifications You must be signed in to change notification settings

sonatype/maven-jrebel-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

JRebel plugin for Maven

This plugin is used in order to generate rebel.xml configuration file for JRebel or liverebel.xml configuration for LiveRebel.

Usage

Add the following snippet to pom.xml of your maven project to generate rebel.xml configuration

<plugin>
  <groupId>org.zeroturnaround</groupId>
  <artifactId>jrebel-maven-plugin</artifactId>
  <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 to the target directory.

LiveRebel

Add the following snippet to pom.xml of your maven project to generate liverebel.xml configuration

<plugin>
  <groupId>org.zeroturnaround</groupId>
  <artifactId>jrebel-maven-plugin</artifactId>
  <!-- Optional configuration -->
  <configuration>
    <name>${project.artifactId}-development</name>
    <version>${project.version}-${maven.build.timestamp}</version>
  </configuration>
  <executions>
    <execution>
      <id>generate-liverebel-xml</id>
      <phase>process-resources</phase>
      <goals>
        <goal>generate-liverebel-xml</goal>
      </goals>
    </execution>
  </executions>
</plugin>

To manually execute the goal, run 'mvn jrebel:generate-liverebel-xml' and rebel.xml will be generated to the target directory.

About

Generates rebel.xml configuration file for the maven project

Resources

License

Apache-2.0, Apache-2.0 licenses found

Licenses found

Apache-2.0
LICENSE
Apache-2.0
LICENSE.txt

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published