com.bytekast.serverless-local-apigateway
所有者: Rowell Belen
此插件为使用Serverless Framework的项目模拟AWS API Gateway
https://github.com/bytekast/local-apigateway-gradle-plugin
来源: https://github.com/bytekast/local-apigateway-gradle-plugin
使用插件DSL
plugins {
id("com.bytekast.serverless-local-apigateway") version "0.5"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.bytekast:serverless-local-apigateway:0.5")
}
}
apply(plugin = "com.bytekast.serverless-local-apigateway")
使用插件DSL
plugins {
id "com.bytekast.serverless-local-apigateway" version "0.5"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.bytekast:serverless-local-apigateway:0.5"
}
}
apply plugin: "com.bytekast.serverless-local-apigateway"