com.github.lusingander.kraphql-plugin
Owner: Kyosuke Fujimoto
Generate Kotlin DSL from GraphQL schema
https://github.com/lusingander/kraphql
Sources: https://github.com/lusingander/kraphql
Version 0.0.4 (latest)
0.0.4
Created 16 January 2022.
Generate Kotlin DSL from GraphQL schema
Using the plugins DSL:
plugins {
id("com.github.lusingander.kraphql-plugin") version "0.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.lusingander:kraphql:0.0.4")
}
}
apply(plugin = "com.github.lusingander.kraphql-plugin")
Using the plugins DSL:
plugins {
id "com.github.lusingander.kraphql-plugin" version "0.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.lusingander:kraphql:0.0.4"
}
}
apply plugin: "com.github.lusingander.kraphql-plugin"