An open API service indexing awesome lists of open source software.

https://github.com/hpedrorodrigues/dag-modules

An Android Gradle plugin to show an adjacency list of internal modules in a multi-module project
https://github.com/hpedrorodrigues/dag-modules

Last synced: 7 months ago
JSON representation

An Android Gradle plugin to show an adjacency list of internal modules in a multi-module project

Awesome Lists containing this project

README

          

# Gradle Modules

An Android Gradle plugin to list an adjacency list of internal modules in a
multi-module project.

**Note**: This project is just a PoC.

```groovy
buildscript {

repositories {
maven { url "file:///${System.getenv("HOME")}/.gradle/caches" }
}

dependencies {
classpath 'com.hpedrorodrigues.dagmodules:dagmodules:1.0.0'
}
}

apply plugin: 'com.hpedrorodrigues.dagmodules'

dagmodules {
filter = "library"
output = "json"
}
```