Search Gradle plugins

com.silverjan.plugins.show-graph-plugin

Owner: jbi

A simple Gradle plugin that shows the task execution order, depending tasks and description

https://github.com/SilverJan/gradle-showGraph

Sources: https://github.com/SilverJan/gradle-showGraph.git

Version 1.0.4 (latest)

1.0.4

Created 25 October 2016.

A simple Gradle plugin that shows the task execution order, depending tasks and description

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.silverjan.plugins.show-graph-plugin") version "1.0.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.silverjan.plugins:gradle-showGraph:1.0.4")
      }
    }
    
    apply(plugin = "com.silverjan.plugins.show-graph-plugin")
  • Applying plugins to all subprojects .