搜索Gradle插件

使用 plugins DSL

plugins {
  id("io.smallrye.graphql") version "2.9.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.smallrye.graphql:smallrye-graphql-gradle-plugin:2.9.1")
  }
}

apply(plugin = "io.smallrye.graphql")

使用 plugins DSL

plugins {
  id "io.smallrye.graphql" version "2.9.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.smallrye.graphql:smallrye-graphql-gradle-plugin:2.9.1"
  }
}

apply plugin: "io.smallrye.graphql"

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