Search Gradle plugins

Version 2.3.1

2.3.1

Created 24 August 2020.

Automatically generates typesafe java and kotlin models from your GraphQL files.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.apollographql.apollo") version "2.3.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.apollographql.apollo:apollo-gradle-plugin:2.3.1")
      }
    }
    
    apply(plugin = "com.apollographql.apollo")
  • Applying plugins to all subprojects .