Search Gradle plugins

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-beta06

0.1.0-beta06

Created 09 July 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-beta06"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("xyz.mcxross:graphql-multiplatform-plugin:0.1.0-beta06")
      }
    }
    
    apply(plugin = "xyz.mcxross.graphql")
  • Applying plugins to all subprojects .