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.4 (latest)

Created 06 February 2017.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.github.kdabir.glide:glide-gradle-plugin:0.9.4")
  }
}

apply(plugin = "com.appspot.glide-gae")

Using the plugins DSL:

plugins {
  id "com.appspot.glide-gae" version "0.9.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.github.kdabir.glide:glide-gradle-plugin:0.9.4"
  }
}

apply plugin: "com.appspot.glide-gae"

Learn how to apply plugins to subprojects