搜索Gradle插件

com.github.ivancarras.graphfity

所有者: Iván Carrasco

Graphfity可以创建关于您内部模块依赖的依赖节点图,有助于您分析和优化项目模块之间的内部依赖关系,生成关于您项目的png图像,这在您开发多模块应用程序时特别有用。

https://github.com/ivancarras/graphfity

来源: https://github.com/ivancarras/graphfity.git

版本 1.1.0(最新版)

1.1.0

创建于 2023年11月11日。

Graphfity使您能够可视化和分析项目内部模块的复杂依赖关系。通过生成完整的依赖节点图,它提供了有价值的洞察力,帮助您优化不同模块之间的关系。该工具对于开发多模块应用程序的开发者特别有利,提供了一幅清晰且富有洞见的PNG图像,包含了项目组件之间的复杂交互。

使用插件DSL

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

使用旧版插件应用

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

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

使用插件DSL

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

使用旧版插件应用

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

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

了解如何将插件应用于子项目