搜索Gradle插件

版本 0.0.1 (最新)

0.0.1

创建于 2020年1月5日。

GraphQL generator

使用 plugins DSL

plugins {
  id("com.github.ryo-chin.graphql") version "0.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.ryo-chin:graphql-generator:0.0.1")
  }
}

apply(plugin = "com.github.ryo-chin.graphql")

使用 plugins DSL

plugins {
  id "com.github.ryo-chin.graphql" version "0.0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.ryo-chin:graphql-generator:0.0.1"
  }
}

apply plugin: "com.github.ryo-chin.graphql"

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