搜索 Gradle 插件

版本 2022.05.01-7057(最新版)

2022.05.01-7057

创建于 2022 年 4 月 20 日。

基于 Gradle 的运行手册驱动程序。

使用 插件 DSL

plugins {
  id("com.brambolt.wrench.runbooks") version "2022.05.01-7057"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.brambolt.wrench:brambolt-wrench-runbooks:2022.05.01-7057")
  }
}

apply(plugin = "com.brambolt.wrench.runbooks")

使用 插件 DSL

plugins {
  id "com.brambolt.wrench.runbooks" version "2022.05.01-7057"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.brambolt.wrench:brambolt-wrench-runbooks:2022.05.01-7057"
  }
}

apply plugin: "com.brambolt.wrench.runbooks"

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