Search Gradle plugins

Version 0.7

Created 20 February 2020.

A Gradle plugin to generate the module graph and include the modules

Using the plugins DSL:

plugins {
  id("com.pablisco.gradle.automodule") version "0.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.pablisco.gradle.automodule:core:0.7")
  }
}

apply(plugin = "com.pablisco.gradle.automodule")

Using the plugins DSL:

plugins {
  id "com.pablisco.gradle.automodule" version "0.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.pablisco.gradle.automodule:core:0.7"
  }
}

apply plugin: "com.pablisco.gradle.automodule"

Learn how to apply plugins to subprojects