com.github.mahnkong.gteg2neo4j
                  Owner:
                  
                    
                    Andreas Mahnke
                  
                
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
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:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.github.mahnkong.gteg2neo4j:com.github.mahnkong.gteg2neo4j.gradle.plugin:1.1.3") }It can then be applied in the precompiled script plugin:plugins { id("com.github.mahnkong.gteg2neo4j") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.mahnkong.gteg2neo4j:com.github.mahnkong.gteg2neo4j.gradle.plugin:1.1.3") } } apply(plugin = "com.github.mahnkong.gteg2neo4j")
- Applying plugins to all subprojects .