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)

1.0.0-RC1

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.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects