com.github.ouchadam.dirmodule
Owner: Adam Brown
Directories to Gradle modules
https://github.com/ouchadam/dir-module/
Sources: https://github.com/ouchadam/dir-module.git
Version 0.1 (latest)
0.1
Created 11 July 2021.
Directories to Gradle modules
Using the plugins DSL:
plugins {
id("com.github.ouchadam.dirmodule") version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.ouchadam:dir-module:0.1")
}
}
apply(plugin = "com.github.ouchadam.dirmodule")
Using the plugins DSL:
plugins {
id "com.github.ouchadam.dirmodule" version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.ouchadam:dir-module:0.1"
}
}
apply plugin: "com.github.ouchadam.dirmodule"