com.ca.apim.gateway.gateway-export-plugin
Owner: Scott Chang
The gateway-developer-plugin enables developing gateway configuration.
https://github.com/ca-api-gateway/gateway-developer-plugin
Sources: https://github.com/ca-api-gateway/gateway-export-plugin
Version 0.6.55
0.6.55
Created 04 February 2019.
The Gateway export plugin can be used to export Gateway configuration from a CA API Gateway
Using the plugins DSL:
plugins {
id("com.ca.apim.gateway.gateway-export-plugin") version "0.6.55"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.ca.apim.gateway:gateway-export-plugin:0.6.55")
}
}
apply(plugin = "com.ca.apim.gateway.gateway-export-plugin")
Using the plugins DSL:
plugins {
id "com.ca.apim.gateway.gateway-export-plugin" version "0.6.55"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.ca.apim.gateway:gateway-export-plugin:0.6.55"
}
}
apply plugin: "com.ca.apim.gateway.gateway-export-plugin"