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.2.0 (latest)

Created 08 November 2023.

JRebel Gradle plugin

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects