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.

Add this plugin to your build using the plugins DSL:

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

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.github.ivancarras.graphfity:com.github.ivancarras.graphfity.gradle.plugin:1.1.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.github.ivancarras.graphfity")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.ivancarras.graphfity:com.github.ivancarras.graphfity.gradle.plugin:1.1.0")
      }
    }
    
    apply(plugin = "com.github.ivancarras.graphfity")
  • Applying plugins to all subprojects .