Search Gradle plugins

com.graphql_java_generator.graphql-gradle-plugin

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.6.1

1.6.1

Created 19 April 2020.

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.6.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.graphql-java-generator:graphql-gradle-plugin:1.6.1")
      }
    }
    
    apply(plugin = "com.graphql_java_generator.graphql-gradle-plugin")
  • Applying plugins to all subprojects .