搜索 Gradle 插件

版本 0.0.3(最新版本)

0.0.3

创建于 2021 年 8 月 8 日。

生成和使用应用程序中共享类存档的辅助工具。

使用插件 DSL

plugins {
  id("com.github.m4gshm.cds") version "0.0.3"
}

使用旧式插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.m4gshm.cds.gradle:cds-gradle-plugin:0.0.3")
  }
}

apply(plugin = "com.github.m4gshm.cds")

使用插件 DSL

plugins {
  id "com.github.m4gshm.cds" version "0.0.3"
}

使用旧式插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.m4gshm.cds.gradle:cds-gradle-plugin:0.0.3"
  }
}

apply plugin: "com.github.m4gshm.cds"

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