搜索 Gradle 插件

版本 0.5.0(最新版)

0.5.0

创建于 2022 年 12 月 23 日。

Gradle 项目集插件。

使用 插件 DSL

plugins {
  id("io.github.ngyewch.projectset") version "0.5.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.ngyewch.gradle:gradle-projectset-plugin:0.5.0")
  }
}

apply(plugin = "io.github.ngyewch.projectset")

使用 插件 DSL

plugins {
  id "io.github.ngyewch.projectset" version "0.5.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.ngyewch.gradle:gradle-projectset-plugin:0.5.0"
  }
}

apply plugin: "io.github.ngyewch.projectset"

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