Search Gradle plugins

Version 0.1 (latest)

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"

Learn how to apply plugins to subprojects