io.smallrye.graphql
所有者: SmallRye 组织
SmallRye: MicroProfile GraphQL Gradle 插件
http://github.com/smallrye/smallrye-graphql/
源码: https://github.com/smallrye/smallrye-graphql
使用 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"