com.expediagroup.graphql
Owner: Expedia Group Open Source
Gradle Plugin that can generate type-safe GraphQL Kotlin client
https://opensource.expediagroup.com/graphql-kotlin/docs/
Sources: https://github.com/ExpediaGroup/graphql-kotlin
Version 3.6.4
3.6.4
Created 21 September 2020.
Gradle Plugin that can generate type-safe GraphQL Kotlin client
Using the plugins DSL:
plugins {
id("com.expediagroup.graphql") version "3.6.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.expediagroup:graphql-kotlin-gradle-plugin:3.6.4")
}
}
apply(plugin = "com.expediagroup.graphql")
Using the plugins DSL:
plugins {
id "com.expediagroup.graphql" version "3.6.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.expediagroup:graphql-kotlin-gradle-plugin:3.6.4"
}
}
apply plugin: "com.expediagroup.graphql"