io.github.OreshkinIV.module-creator
Owner: Igor Oreshkin
Plugin for creating modules with base structure via the terminal. Creates a new module with a clean architecture containing the dagger 2 and retrofit template
https://github.com/OreshkinIV/module-creator.git
Sources: https://github.com/OreshkinIV/module-creator.git
Version 1.0.0 (latest)
1.0.0
Created 05 May 2024.
Plugin for creating modules with base structure via the terminal. Creates a new module with a clean architecture containing the dagger 2 and retrofit template
Using the plugins DSL:
plugins {
id("io.github.OreshkinIV.module-creator") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.OreshkinIV:module-creator:1.0.0")
}
}
apply(plugin = "io.github.OreshkinIV.module-creator")
Using the plugins DSL:
plugins {
id "io.github.OreshkinIV.module-creator" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.OreshkinIV:module-creator:1.0.0"
}
}
apply plugin: "io.github.OreshkinIV.module-creator"