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)

Created 25 October 2016.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.silverjan.plugins:gradle-showGraph:1.0.4")
  }
}

apply(plugin = "com.silverjan.plugins.show-graph-plugin")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.silverjan.plugins:gradle-showGraph:1.0.4"
  }
}

apply plugin: "com.silverjan.plugins.show-graph-plugin"

Learn how to apply plugins to subprojects