Search Gradle plugins

Version 0.9.0

Created 08 October 2017.

App Engine Spring Boot Plugin

Using the plugins DSL:

plugins {
  id("org.hidetake.appengine.spring.boot") version "0.9.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.hidetake:appengine-spring-boot-plugin:0.9.0")
  }
}

apply(plugin = "org.hidetake.appengine.spring.boot")

Using the plugins DSL:

plugins {
  id "org.hidetake.appengine.spring.boot" version "0.9.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.hidetake:appengine-spring-boot-plugin:0.9.0"
  }
}

apply plugin: "org.hidetake.appengine.spring.boot"

Learn how to apply plugins to subprojects