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)
Created 20 May 2021.
gradle plugin for suparnatural-graphql
Add this plugin to your build using the plugins DSL:
plugins {
id("com.suparnatural.kotlin.plugins.graphql") version "1.0.13"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.suparnatural.kotlin.plugins.graphql:com.suparnatural.kotlin.plugins.graphql.gradle.plugin:1.0.13") }
It can then be applied in the precompiled script plugin:plugins { id("com.suparnatural.kotlin.plugins.graphql") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.suparnatural.kotlin.plugins.graphql:com.suparnatural.kotlin.plugins.graphql.gradle.plugin:1.0.13") } } apply(plugin = "com.suparnatural.kotlin.plugins.graphql")
- Applying plugins to all subprojects .