搜索 Gradle 插件

版本 0.0.4 (最新版)

0.0.4

创建于 2022 年 1 月 16 日。

从 GraphQL 模式生成 Kotlin DSL

使用 plugins DSL

plugins {
  id("com.github.lusingander.kraphql-plugin") version "0.0.4"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.lusingander:kraphql:0.0.4")
  }
}

apply(plugin = "com.github.lusingander.kraphql-plugin")

使用 plugins DSL

plugins {
  id "com.github.lusingander.kraphql-plugin" version "0.0.4"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.lusingander:kraphql:0.0.4"
  }
}

apply plugin: "com.github.lusingander.kraphql-plugin"

学习如何将插件应用于子项目