Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.expediagroup.graphql") version "4.0.0-alpha.9"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.expediagroup:graphql-kotlin-gradle-plugin:4.0.0-alpha.9")
      }
    }
    
    apply(plugin = "com.expediagroup.graphql")
  • Applying plugins to all subprojects .