io.github.yearnlune.graphql.doc.directive.plugin
所有者: DONGHWAN KIM
Gradle插件用于GraphQL文档
https://github.com/yearnlune/graphql-doc
来源: https://github.com/yearnlune/graphql-doc
使用插件DSL
plugins {
id("io.github.yearnlune.graphql.doc.directive.plugin") version "0.0.6"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.yearnlune.graphql.doc:graphql-doc-directive-gradle-plugin:0.0.6")
}
}
apply(plugin = "io.github.yearnlune.graphql.doc.directive.plugin")
使用插件DSL
plugins {
id "io.github.yearnlune.graphql.doc.directive.plugin" version "0.0.6"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.yearnlune.graphql.doc:graphql-doc-directive-gradle-plugin:0.0.6"
}
}
apply plugin: "io.github.yearnlune.graphql.doc.directive.plugin"