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