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
Sources: https://github.com/graphql-java-generator/graphql-gradle-plugin-project
Version 1.18.11 (latest)
1.18.11
Created 04 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.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.graphql_java_generator.graphql-gradle-plugin") version "1.18.11"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gradle.plugin.com.graphql-java-generator:graphql-gradle-plugin:1.18.11") } } apply(plugin = "com.graphql_java_generator.graphql-gradle-plugin")
- Applying plugins to all subprojects .