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
- Host: GitHub
- URL: https://github.com/hpedrorodrigues/dag-modules
- Owner: hpedrorodrigues
- Created: 2019-08-04T01:06:15.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-04T01:06:23.000Z (about 6 years ago)
- Last Synced: 2025-03-08T09:09:03.631Z (7 months ago)
- Language: Kotlin
- Homepage:
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
}
```