xyz.mcxross.graphql
Owner: @a
Gradle Plugin that can generate type-safe GraphQL Kotlin Multiplatform client and GraphQL schema in SDL format
https://github.com/mcxross/graphql-multiplatform
Sources: https://github.com/mcxross/graphql-multiplatform.git
Version 0.1.0-beta02
Created 18 May 2024.
Gradle Plugin that can generate type-safe GraphQL Kotlin Multiplatform client and GraphQL schema in SDL format
Add this plugin to your build using the plugins DSL:
plugins {
id("xyz.mcxross.graphql") version "0.1.0-beta02"
}
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("xyz.mcxross.graphql:xyz.mcxross.graphql.gradle.plugin:0.1.0-beta02") }
It can then be applied in the precompiled script plugin:plugins { id("xyz.mcxross.graphql") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("xyz.mcxross.graphql:xyz.mcxross.graphql.gradle.plugin:0.1.0-beta02") } } apply(plugin = "xyz.mcxross.graphql")
- Applying plugins to all subprojects .