Search Gradle plugins

Version 1.0.3-SNAPSHOT

1.0.3-SNAPSHOT

Created 22 January 2021.

The Gateway policy plugin can be used to develop Gateway configuration

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.ca.apim.gateway.gateway-policy-plugin") version "1.0.3-SNAPSHOT"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.ca.apim.gateway:gateway-policy-plugin:1.0.3-SNAPSHOT")
      }
    }
    
    apply(plugin = "com.ca.apim.gateway.gateway-policy-plugin")
  • Applying plugins to all subprojects .