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.17.3.1-SNAPSHOT
1.17.3.1-SNAPSHOT
Created 28 September 2021.
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 "1.17.3.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.graphql-java-generator:graphql-gradle-plugin:1.17.3.1-SNAPSHOT")
}
}
apply(plugin = "com.graphql_java_generator.graphql-gradle-plugin")
Using the plugins DSL:
plugins {
id "com.graphql_java_generator.graphql-gradle-plugin" version "1.17.3.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.graphql-java-generator:graphql-gradle-plugin:1.17.3.1-SNAPSHOT"
}
}
apply plugin: "com.graphql_java_generator.graphql-gradle-plugin"