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.4 (latest)

Created 12 March 2016.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.mahnkong:gradle-teg2neo4j-plugin:1.1.4")
  }
}

apply(plugin = "com.github.mahnkong.gteg2neo4j")

Using the plugins DSL:

plugins {
  id "com.github.mahnkong.gteg2neo4j" version "1.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.mahnkong:gradle-teg2neo4j-plugin:1.1.4"
  }
}

apply plugin: "com.github.mahnkong.gteg2neo4j"

Learn how to apply plugins to subprojects