com.ca.apim.gateway.gateway-developer-plugin
Owner: Scott Chang
The Gateway developer plugin can be used to develop Gateway configuration
https://github.com/ca-api-gateway/gateway-developer-plugin
Sources: https://github.com/ca-api-gateway/gateway-developer-plugin
Version 0.6.11
0.6.11
Created 23 October 2018.
The Gateway developer plugin can be used to develop Gateway configuration
Using the plugins DSL:
plugins {
id("com.ca.apim.gateway.gateway-developer-plugin") version "0.6.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.ca.apim.gateway:gateway-developer-plugin:0.6.11")
}
}
apply(plugin = "com.ca.apim.gateway.gateway-developer-plugin")
Using the plugins DSL:
plugins {
id "com.ca.apim.gateway.gateway-developer-plugin" version "0.6.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.ca.apim.gateway:gateway-developer-plugin:0.6.11"
}
}
apply plugin: "com.ca.apim.gateway.gateway-developer-plugin"