io.github.kobylynskyi.graphql.codegen
Owner:
Bogdan Kobylynskyi
Gradle plugin for GraphQL Java code generation
Version 5.7.1 (latest)
Created 23 March 2023.
Provides a task for generating Java code based on GraphQL schema
Using the plugins DSL:
plugins {
id("io.github.kobylynskyi.graphql.codegen") version "5.7.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.kobylynskyi:graphql-java-codegen-gradle-plugin:5.7.1")
}
}
apply(plugin = "io.github.kobylynskyi.graphql.codegen")
Using the plugins DSL:
plugins {
id "io.github.kobylynskyi.graphql.codegen" version "5.7.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.kobylynskyi:graphql-java-codegen-gradle-plugin:5.7.1"
}
}
apply plugin: "io.github.kobylynskyi.graphql.codegen"