com.github.mahnkong.gteg2neo4j
所有者: Andreas Mahnke
一个Gradle插件,它可以使项目构建的“Gradle任务执行图”存储在Neo4j实例中
https://github.com/mahnkong/gradle-teg2neo4j-plugin
来源: https://github.com/mahnkong/gradle-teg2neo4j-plugin
使用 插件DSL
plugins {
id("com.github.mahnkong.gteg2neo4j") version "1.1.4"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.mahnkong:gradle-teg2neo4j-plugin:1.1.4")
}
}
apply(plugin = "com.github.mahnkong.gteg2neo4j")
使用 插件DSL
plugins {
id "com.github.mahnkong.gteg2neo4j" version "1.1.4"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.mahnkong:gradle-teg2neo4j-plugin:1.1.4"
}
}
apply plugin: "com.github.mahnkong.gteg2neo4j"