Search Gradle plugins

com.github.mahnkong.gteg2neo4j

A Gradle-Plugin which enables the "Gradle Task Execution Graph" of a project's build to be stored inside a Neo4j instance

https://github.com/mahnkong/gradle-teg2neo4j-plugin

Sources: https://github.com/mahnkong/gradle-teg2neo4j-plugin

Version 1.1.3

1.1.3

Created 11 March 2016.

A Gradle-Plugin which enables the "Gradle Task Execution Graph" of a project's build to be stored inside a Neo4j instance

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.mahnkong.gteg2neo4j") version "1.1.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.mahnkong:gradle-teg2neo4j-plugin:1.1.3")
      }
    }
    
    apply(plugin = "com.github.mahnkong.gteg2neo4j")
  • Applying plugins to all subprojects .