搜索 Gradle 插件

版本 1.7.1(最新版)

1.7.1

创建于 2022 年 5 月 14 日。

module-chef-plugin

使用 插件 DSL

plugins {
  id("io.github.jamesfchen.module-chef-plugin") version "1.7.1"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.jamesfchen:bundles-assembler-plugin:1.7.1")
  }
}

apply(plugin = "io.github.jamesfchen.module-chef-plugin")

使用 插件 DSL

plugins {
  id "io.github.jamesfchen.module-chef-plugin" version "1.7.1"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.jamesfchen:bundles-assembler-plugin:1.7.1"
  }
}

apply plugin: "io.github.jamesfchen.module-chef-plugin"

了解如何向子项目应用插件