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.5.10
0.5.10
Created 21 September 2018.
The gateway-developer-plugin enables developing gateway configuration.
Using the plugins DSL:
plugins {
id("com.ca.apim.gateway.gateway-export-plugin") version "0.5.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.ca.apim.gateway:gateway-export-plugin:0.5.10")
}
}
apply(plugin = "com.ca.apim.gateway.gateway-export-plugin")
Using the plugins DSL:
plugins {
id "com.ca.apim.gateway.gateway-export-plugin" version "0.5.10"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.ca.apim.gateway:gateway-export-plugin:0.5.10"
}
}
apply plugin: "com.ca.apim.gateway.gateway-export-plugin"