com.suparnatural.kotlin.plugins.graphql
Owner: Suparn Gupta
gradle plugin for suparnatural-graphql
https://kmpdocs.suparnatural.com/graphql/
Sources: https://github.com/suparngp/kotlin-multiplatform-projects/tree/master/graphql-plugin
Version 1.0.13 (latest)
1.0.13
Created 20 May 2021.
gradle plugin for suparnatural-graphql
Using the plugins DSL:
plugins {
id("com.suparnatural.kotlin.plugins.graphql") version "1.0.13"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.suparnatural.kotlin:graphql-plugin:1.0.13")
}
}
apply(plugin = "com.suparnatural.kotlin.plugins.graphql")
Using the plugins DSL:
plugins {
id "com.suparnatural.kotlin.plugins.graphql" version "1.0.13"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.suparnatural.kotlin:graphql-plugin:1.0.13"
}
}
apply plugin: "com.suparnatural.kotlin.plugins.graphql"