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.0.0

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"

Learn how to apply plugins to subprojects