搜索Gradle插件

版本 1.1 (最新版)

1.1

创建于 2017年11月14日。

App Engine Spring Boot 插件

使用插件DSL

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

使用 旧插件应用程序

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

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

使用插件DSL

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

使用 旧插件应用程序

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

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

了解如何将插件应用于子项目