com.github.ryo-chin.graphql
所有者: RyoheiYamamoto
GraphQL generator
https://github.com/ryo-chin/graphql-generator
来源: https://github.com/ryo-chin/graphql-generator
版本 0.0.1 (最新)
0.0.1
创建于 2020年1月5日。
GraphQL generator
使用 plugins DSL
plugins {
id("com.github.ryo-chin.graphql") version "0.0.1"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.ryo-chin:graphql-generator:0.0.1")
}
}
apply(plugin = "com.github.ryo-chin.graphql")
使用 plugins DSL
plugins {
id "com.github.ryo-chin.graphql" version "0.0.1"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.ryo-chin:graphql-generator:0.0.1"
}
}
apply plugin: "com.github.ryo-chin.graphql"