com.ca.apim.gateway.gateway-developer-plugin
所有者: 张 Scott
网关开发者插件可用于开发网关配置
https://github.com/ca-api-gateway/gateway-developer-plugin
来源:https://github.com/ca-api-gateway/gateway-developer-plugin
使用插件DSL
plugins {
id("com.ca.apim.gateway.gateway-developer-plugin") version "0.10.15"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.ca.apim.gateway:gateway-developer-plugin:0.10.15")
}
}
apply(plugin = "com.ca.apim.gateway.gateway-developer-plugin")
使用插件DSL
plugins {
id "com.ca.apim.gateway.gateway-developer-plugin" version "0.10.15"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.ca.apim.gateway:gateway-developer-plugin:0.10.15"
}
}
apply plugin: "com.ca.apim.gateway.gateway-developer-plugin"