Search Gradle plugins

org.zeroturnaround.gradle.jrebel

JRebel Gradle plugin can be used to automatically generate a suitable rebel.xml configuration file for you during the Gradle build.

https://jrebel.com

Sources: https://github.com/zeroturnaround/gradle-jrebel-plugin

Version 1.1.4.3

Created 16 January 2017.

ZeroTurnaround JRebel Gradle plugin

Using the plugins DSL:

plugins {
  id("org.zeroturnaround.gradle.jrebel") version "1.1.4.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.zeroturnaround:gradle-jrebel-plugin:1.1.4.3")
  }
}

apply(plugin = "org.zeroturnaround.gradle.jrebel")

Using the plugins DSL:

plugins {
  id "org.zeroturnaround.gradle.jrebel" version "1.1.4.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.zeroturnaround:gradle-jrebel-plugin:1.1.4.3"
  }
}

apply plugin: "org.zeroturnaround.gradle.jrebel"

Learn how to apply plugins to subprojects