Search Gradle plugins

com.appspot.glide-gae

Glide Gradle plugin makes it incredebily easy to develop and deploy webapps for Google App Engine

https://glide-gae.appspot.com

Sources: https://github.com/kdabir/glide.git

Version 0.9.3

Created 10 July 2016.

Glide Gradle plugin makes it incredebily easy to develop and deploy webapps for Google App Engine

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.appspot.glide-gae") version "0.9.3"
}

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("com.appspot.glide-gae:com.appspot.glide-gae.gradle.plugin:0.9.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.appspot.glide-gae")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.appspot.glide-gae:com.appspot.glide-gae.gradle.plugin:0.9.3")
      }
    }
    
    apply(plugin = "com.appspot.glide-gae")
  • Applying plugins to all subprojects .