搜索Gradle插件

org.zeroturnaround.gradle.jrebel

所有者: ZeroTurnaround AS

JRebel Gradle插件可以在Gradle构建过程中为您自动生成一个合适的rebel.xml配置文件。

https://jrebel.com

来源: https://github.com/zeroturnaround/gradle-jrebel-plugin

版本 1.2.0(最新版本)

1.2.0

创建时间:2023年11月8日。

JRebel Gradle插件

使用插件DSL

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

使用旧插件应用

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

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

使用插件DSL

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

使用旧插件应用

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

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

学习如何将插件应用到子项目