com.github.ivancarras.graphfity
Owner:
Iván Carrasco
Graphfity creates a dependency node graph about your internal modules dependencies, helping you to analise and optimize the internal dependencies between your project modules, generating a png image about your project which is specially useful if you are developing a multi-module application
https://github.com/ivancarras/graphfity
Version 1.0.0 (latest)
Created 31 August 2021.
Graphfity creates a dependency node graph about your internal modules dependencies, helping you to analise and optimize the internal dependencies between your project modules, generating a png image about your project which is specially useful if you are developing a multi-module application
Using the plugins DSL:
plugins {
id("com.github.ivancarras.graphfity") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.ivancarras:graphfity-plugin:1.0.0")
}
}
apply(plugin = "com.github.ivancarras.graphfity")
Using the plugins DSL:
plugins {
id "com.github.ivancarras.graphfity" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.ivancarras:graphfity-plugin:1.0.0"
}
}
apply plugin: "com.github.ivancarras.graphfity"