Search Gradle plugins

io.github.timbermir.clean-wizard.multimodule

This plugin is required for Clean Wizard Kotlin Symbol Processor multi-module class generation. If your project is single-module, no need to apply it. It allows youto generate classes in various modules, so if you have data, domain and presentation modules and want to generate classes for each module, use this plugin.

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 multi-module class generation. If your project is single-module, no need to apply it. It allows youto generate classes in various modules, so if you have data, domain and presentation modules and want to generate classes for each module, use this plugin.

Add this plugin to your build using the plugins DSL:

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