com.ca.apim.gateway.gateway-export-plugin-base
所有者: Scott Chang
网关导出插件可用于从 CA API 网关导出配置
https://github.com/ca-api-gateway/gateway-developer-plugin
来源: https://github.com/ca-api-gateway/gateway-export-plugin.git
使用 插件 DSL
plugins {
id("com.ca.apim.gateway.gateway-export-plugin-base") version "1.0.9"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.ca.apim.gateway:gateway-export-plugin:1.0.9")
}
}
apply(plugin = "com.ca.apim.gateway.gateway-export-plugin-base")
使用 插件 DSL
plugins {
id "com.ca.apim.gateway.gateway-export-plugin-base" version "1.0.9"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.ca.apim.gateway:gateway-export-plugin:1.0.9"
}
}
apply plugin: "com.ca.apim.gateway.gateway-export-plugin-base"