io.github.ermadmi78.kobby
Owner:
Dmitry Ermakov
Kobby is a Gradle plugin for generating Kotlin DSL Client by GraphQL schema
https://github.com/ermadmi78/kobby
Sources: https://github.com/ermadmi78/kobby
Version 1.0.0-beta.03
Created 18 May 2021.
Kobby is a codegen plugin of Kotlin DSL Client by GraphQL schema
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.ermadmi78.kobby") version "1.0.0-beta.03"
}
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("io.github.ermadmi78.kobby:io.github.ermadmi78.kobby.gradle.plugin:1.0.0-beta.03") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.ermadmi78.kobby") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.ermadmi78.kobby:io.github.ermadmi78.kobby.gradle.plugin:1.0.0-beta.03") } } apply(plugin = "io.github.ermadmi78.kobby")
- Applying plugins to all subprojects .