搜索Gradle插件

io.github.timbermir.clean-wizard

所有者: Timbermir

该插件是Clean Wizard Kotlin Symbol Processor高级配置所需的。使用此插件,您能配置如何生成类,例如,使用此插件,您可以更改DTO类的前缀从DTO到Dto。

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高级配置所需的。使用此插件,您能配置如何生成类,例如,使用此插件,您可以更改DTO类的前缀从DTO到Dto。

使用插件DSL

plugins {
  id("io.github.timbermir.clean-wizard") 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")

使用插件DSL

plugins {
  id "io.github.timbermir.clean-wizard" 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"

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