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