搜索 Gradle 插件

版本 1.0.4 (最新版)

1.0.4

创建于 2015 年 6 月 29 日。

此插件根据 WeltN24 的最佳实践应用 jrebel 到项目中

使用 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"

了解如何将插件应用到子项目中