Search Gradle plugins

life.expert.archidoc

Plugin is based on work - Classgraph. You can open the generated .dot file in a vector editor. You can convert then the model into The Standard for exchange of architecture models from The Open Group

https://github.com/wilmerkrisp/archidoc

Sources: https://github.com/wilmerkrisp/archidoc

Version 1.0.11 (latest)

Created 05 March 2019.

Documenting Software Architecture Plugin. Visualizing code of your application. It generates full diagram of your classes into .dot(graphviz) file. Plugin is based on work - Classgraph. You can open the generated .dot file in a vector editor.

Using the plugins DSL:

plugins {
  id("life.expert.archidoc") version "1.0.11"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.life.expert:archidoc:1.0.11")
  }
}

apply(plugin = "life.expert.archidoc")

Using the plugins DSL:

plugins {
  id "life.expert.archidoc" version "1.0.11"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.life.expert:archidoc:1.0.11"
  }
}

apply plugin: "life.expert.archidoc"

Learn how to apply plugins to subprojects