de.joshuagleitze.dgs.codegen
Owner:
Joshua Gleitze
Fork of graphql-dgs-codegen-gradle, with support for jspecify. Only maintained until the feature is merged upstream.
https://github.com/jGleitz/dgs-codegen
Sources: https://github.com/jGleitz/dgs-codegen.git
Version 7.1.7 (latest)
Created 14 February 2025.
Fork of graphql-dgs-codegen-gradle, with support for jspecify. Only maintained until the feature is merged upstream.
Add this plugin to your build using the plugins DSL:
plugins {
id("de.joshuagleitze.dgs.codegen") version "7.1.7"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("de.joshuagleitze.dgs.codegen:de.joshuagleitze.dgs.codegen.gradle.plugin:7.1.7") }
It can then be applied in the precompiled script plugin:plugins { id("de.joshuagleitze.dgs.codegen") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.joshuagleitze.dgs.codegen:de.joshuagleitze.dgs.codegen.gradle.plugin:7.1.7") } } apply(plugin = "de.joshuagleitze.dgs.codegen")
- Applying plugins to all subprojects .