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)

1.0.0-RC1

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.

Using the plugins DSL:

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

Using the plugins DSL:

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

Learn how to apply plugins to subprojects