Search Gradle plugins

io.github.timbermir.clean-wizard

This plugin is required for Clean Wizard Kotlin Symbol Processor advanced configuration. Using the following plugin you are able to configure how classes are generated, for instance, using this plugin, you are able to change the DTO classes prefix from DTO to Dto.

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

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

Version 1.0.0-RC1 (latest)

Created 05 August 2024.

This plugin is required for Clean Wizard Kotlin Symbol Processor advanced configuration. Using the following plugin you are able to configure how classes are generated, for instance, using this plugin, you are able to change the DTO classes prefix from DTO to Dto.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("io.github.timbermir.clean-wizard:io.github.timbermir.clean-wizard.gradle.plugin:1.0.0-RC1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.timbermir.clean-wizard")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.timbermir.clean-wizard:io.github.timbermir.clean-wizard.gradle.plugin:1.0.0-RC1")
      }
    }
    
    apply(plugin = "io.github.timbermir.clean-wizard")
  • Applying plugins to all subprojects .