搜索Gradle插件

io.github.timbermir.clean-wizard.multimodule

所有者: Timbermir

此插件对于Clean Wizard Kotlin Symbol Processor多模块类生成是必需的。如果您的项目是单模块,则不需要应用它。它允许在各个模块中生成类,因此如果您有数据、域和表示模块,并希望为每个模块生成类,请使用此插件。

https://github.com/Timbermir/clean-wizard

来源: https://github.com/Timbermir/clean-wizard.git

版本 1.0.0-RC1 (最新)

1.0.0-RC1

创建于 2024年8月5日。

此插件对于Clean Wizard Kotlin Symbol Processor多模块类生成是必需的。如果您的项目是单模块,则不需要应用它。它允许在各个模块中生成类,因此如果您有数据、域和表示模块,并希望为每个模块生成类,请使用此插件。

使用plugins DSL

plugins {
  id("io.github.timbermir.clean-wizard.multimodule") version "1.0.0-RC1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.timbermir.clean-wizard:implementation:1.0.0-RC1")
  }
}

apply(plugin = "io.github.timbermir.clean-wizard.multimodule")

使用plugins DSL

plugins {
  id "io.github.timbermir.clean-wizard.multimodule" version "1.0.0-RC1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.timbermir.clean-wizard:implementation:1.0.0-RC1"
  }
}

apply plugin: "io.github.timbermir.clean-wizard.multimodule"

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