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

Using the plugins DSL:

plugins {
  id("io.github.ermadmi78.kobby") version "1.0.0-beta.10"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.ermadmi78:kobby-gradle-plugin:1.0.0-beta.10")
  }
}

apply(plugin = "io.github.ermadmi78.kobby")

Using the plugins DSL:

plugins {
  id "io.github.ermadmi78.kobby" version "1.0.0-beta.10"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.ermadmi78:kobby-gradle-plugin:1.0.0-beta.10"
  }
}

apply plugin: "io.github.ermadmi78.kobby"

Learn how to apply plugins to subprojects