Search Gradle plugins

Version 0.0.3

Created 16 January 2022.

Generate Kotlin DSL from GraphQL schema

Using the plugins DSL:

plugins {
  id("com.github.lusingander.kraphql-plugin") version "0.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.lusingander:kraphql:0.0.3")
  }
}

apply(plugin = "com.github.lusingander.kraphql-plugin")

Using the plugins DSL:

plugins {
  id "com.github.lusingander.kraphql-plugin" version "0.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.lusingander:kraphql:0.0.3"
  }
}

apply plugin: "com.github.lusingander.kraphql-plugin"

Learn how to apply plugins to subprojects