Search Gradle plugins

io.github.ermadmi78.kobby

Kobby is a Gradle plugin for generating Kotlin DSL Client by GraphQL schema

https://github.com/ermadmi78/kobby

Sources: https://github.com/ermadmi78/kobby

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.ermadmi78.kobby") version "1.0.0-alpha.07"
}

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-alpha.07")
    }
    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-alpha.07")
      }
    }
    
    apply(plugin = "io.github.ermadmi78.kobby")
  • Applying plugins to all subprojects .