搜索Gradle插件

io.github.OreshkinIV.module-creator

所有者: Igor Oreshkin

通过终端创建具有基本结构的模块的插件。创建一个包含dagger 2和retrofit模板的新模块,拥有清晰的架构

https://github.com/OreshkinIV/module-creator.git

源代码: https://github.com/OreshkinIV/module-creator.git

版本 1.0.0(最新版本)

1.0.0

创建日期 2024年5月5日。

通过终端创建具有基本结构的模块的插件。创建一个包含dagger 2和retrofit模板的新模块,拥有清晰的架构

使用 plugins DSL

plugins {
  id("io.github.OreshkinIV.module-creator") version "1.0.0"
}

使用 旧的插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.OreshkinIV:module-creator:1.0.0")
  }
}

apply(plugin = "io.github.OreshkinIV.module-creator")

使用 plugins DSL

plugins {
  id "io.github.OreshkinIV.module-creator" version "1.0.0"
}

使用 旧的插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.OreshkinIV:module-creator:1.0.0"
  }
}

apply plugin: "io.github.OreshkinIV.module-creator"

学习如何将插件应用于子项目