de.weltn24.jrebel
所有者: WeltN24 CI-User
此插件根据 WeltN24 的最佳实践应用 jrebel 到项目中
https://github.com/WeltN24/gradle-jrebel-plugin
来源:https://github.com/WeltN24/gradle-jrebel-plugin
使用 plugins DSL
plugins {
id("de.weltn24.jrebel") version "1.0.4"
}
使用 传统插件应用方式
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.weltn24:jrebel:1.0.4")
}
}
apply(plugin = "de.weltn24.jrebel")
使用 plugins DSL
plugins {
id "de.weltn24.jrebel" version "1.0.4"
}
使用 传统插件应用方式
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.weltn24:jrebel:1.0.4"
}
}
apply plugin: "de.weltn24.jrebel"