Search Gradle plugins

com.github.ivancarras.graphfity

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

Sources: https://github.com/ivancarras/graphfity.git

Version 1.1.0 (latest)

Created 11 November 2023.

Graphfity empowers you to visualize and analyze the intricate dependencies within your project's internal modules. By generating a comprehensive dependency node graph, it provides valuable insights to help you optimize the relationships between different modules. This tool proves particularly advantageous for developers working on multi-module applications, offering a clear and insightful PNG image that encapsulates the intricate interplay of your project components.

Using the plugins DSL:

plugins {
  id("com.github.ivancarras.graphfity") version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.ivancarras:graphfity-plugin:1.1.0")
  }
}

apply(plugin = "com.github.ivancarras.graphfity")

Using the plugins DSL:

plugins {
  id "com.github.ivancarras.graphfity" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.ivancarras:graphfity-plugin:1.1.0"
  }
}

apply plugin: "com.github.ivancarras.graphfity"

Learn how to apply plugins to subprojects