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 4.0.0-alpha.1
4.0.0-alpha.1
Created 01 September 2020.
Gradle Plugin that can generate type-safe GraphQL Kotlin client
Using the plugins DSL:
plugins {
id("com.expediagroup.graphql") version "4.0.0-alpha.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.expediagroup:graphql-kotlin-gradle-plugin:4.0.0-alpha.1")
}
}
apply(plugin = "com.expediagroup.graphql")
Using the plugins DSL:
plugins {
id "com.expediagroup.graphql" version "4.0.0-alpha.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.expediagroup:graphql-kotlin-gradle-plugin:4.0.0-alpha.1"
}
}
apply plugin: "com.expediagroup.graphql"