com.pablisco.gradle.automodule
                  Owner:
                  
                    
                    Pablo Gonzalez Alonso
                  
                
A Gradle plugin to generate the module graph and include the modules
https://github.com/pablisco/auto-module/
Sources: https://github.com/pablisco/auto-module/
Version 0.2
Created 17 February 2020.
                A Gradle plugin to generate the module graph and include the modules
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.pablisco.gradle.automodule") version "0.2"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.pablisco.gradle.automodule:com.pablisco.gradle.automodule.gradle.plugin:0.2") }It can then be applied in the precompiled script plugin:plugins { id("com.pablisco.gradle.automodule") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.pablisco.gradle.automodule:com.pablisco.gradle.automodule.gradle.plugin:0.2") } } apply(plugin = "com.pablisco.gradle.automodule")
- Applying plugins to all subprojects .