Search Gradle plugins

com.ca.apim.gateway.gateway-import-plugin

The Gateway import plugin can be used to import existing Gateway bundles into a CA API Gateway running instance

https://github.com/ca-api-gateway/gateway-developer-plugin

Sources: https://github.com/ca-api-gateway/gateway-developer-plugin.git

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.ca.apim.gateway.gateway-import-plugin") version "0.6.62"
}

See also:

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