com.github.lusingander.kraphql-plugin
所有者: 藤本京佑
从 GraphQL 模式生成 Kotlin DSL
https://github.com/lusingander/kraphql
来源: https://github.com/lusingander/kraphql
使用 plugins DSL
plugins {
id("com.github.lusingander.kraphql-plugin") version "0.0.4"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.lusingander:kraphql:0.0.4")
}
}
apply(plugin = "com.github.lusingander.kraphql-plugin")
使用 plugins DSL
plugins {
id "com.github.lusingander.kraphql-plugin" version "0.0.4"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.lusingander:kraphql:0.0.4"
}
}
apply plugin: "com.github.lusingander.kraphql-plugin"