Maintained by aalmiray
The rebel.xml descriptor file is the main resource you need to add to your project in order to start reloading classes and resources with JRebel. Have a look at this page for a reference on the rebel.xml file format.
JRebel Gradle plugin can be used to automatically generate a suitable rebel.xml configuration file for you during the Gradle build.
| Website | https://github.com/zeroturnaround/gradle-jrebel-plugin |
|---|---|
| Author | zeroturnaround |
| Version | 1.1.2 |
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.zeroturnaround:gradle-jrebel-plugin:1.1.2'
}
}
apply plugin: 'rebel'
jar.dependsOn(generateRebel)