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)

0.9.4

Created 06 February 2017.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact 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