搜索 Gradle 插件

xyz.mcxross.graphql

所有者: @a

Gradle 插件,可以生成安全的 GraphQL Kotlin 多平台客户端和 SDL 格式的 GraphQL 模式

https://github.com/mcxross/graphql-multiplatform

来源: https://github.com/mcxross/graphql-multiplatform.git

版本 0.1.0-beta07 (最新版)

0.1.0-beta07

创建于 2024 年 7 月 10 日。

Gradle 插件,可以生成安全的 GraphQL Kotlin 多平台客户端和 SDL 格式的 GraphQL 模式

使用 插件 DSL

plugins {
  id("xyz.mcxross.graphql") version "0.1.0-beta07"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("xyz.mcxross:graphql-multiplatform-plugin:0.1.0-beta07")
  }
}

apply(plugin = "xyz.mcxross.graphql")

使用 插件 DSL

plugins {
  id "xyz.mcxross.graphql" version "0.1.0-beta07"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "xyz.mcxross:graphql-multiplatform-plugin:0.1.0-beta07"
  }
}

apply plugin: "xyz.mcxross.graphql"

了解如何将插件应用到子项目中