com.graphql-java-generator.graphql-gradle-plugin
Owner:
Etienne SF
graphql-gradle-plugin is a Gradle Plugin for GraphQL, based on graphql-java. It accelerates the development for both the client and the server, by generating the Java code. It allows a quicker development when in contract-first approach, by avoiding to code the boilerplate code.
https://github.com/graphql-java-generator/graphql-gradle-plugin-project
Version 2.0 (latest)
Created 29 April 2023.
graphql-gradle-plugin is a Gradle Plugin for GraphQL, based on graphql-java. It accelerates the development for both the client and the server, by generating the Java code. It allows a quicker development when in contract-first approach, by avoiding to code the boilerplate code.
Using the plugins DSL:
plugins {
id("com.graphql-java-generator.graphql-gradle-plugin") version "2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.graphql-java-generator:graphql-gradle-plugin:2.0")
}
}
apply(plugin = "com.graphql-java-generator.graphql-gradle-plugin")
Using the plugins DSL:
plugins {
id "com.graphql-java-generator.graphql-gradle-plugin" version "2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.graphql-java-generator:graphql-gradle-plugin:2.0"
}
}
apply plugin: "com.graphql-java-generator.graphql-gradle-plugin"