org.hidetake.appengine.spring.boot
所有者: Hidetake Iwata
App Engine Spring Boot 插件
https://github.com/int128/appengine-spring-boot-plugin
来源: https://github.com/int128/appengine-spring-boot-plugin
使用插件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"