搜索Gradle插件

版本 0.6.0(最新版本)

0.6.0

创建时间 2024年2月3日。

快速模块的约定配置

使用 插件 DSL

plugins {
  id("io.github.tozydev.fast-module") version "0.6.0"
}

使用 旧式插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.tozydev:fast-module-gradle-plugin:0.6.0")
  }
}

apply(plugin = "io.github.tozydev.fast-module")

使用 插件 DSL

plugins {
  id "io.github.tozydev.fast-module" version "0.6.0"
}

使用 旧式插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.tozydev:fast-module-gradle-plugin:0.6.0"
  }
}

apply plugin: "io.github.tozydev.fast-module"

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