Search Gradle plugins

com.ca.apim.gateway.gateway-export-plugin-base

The Gateway export plugin can be used to export Gateway configuration from a CA API Gateway

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

Using the plugins DSL:

plugins {
  id("com.ca.apim.gateway.gateway-export-plugin-base") version "0.6.51"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.ca.apim.gateway:gateway-export-plugin:0.6.51")
  }
}

apply(plugin = "com.ca.apim.gateway.gateway-export-plugin-base")

Using the plugins DSL:

plugins {
  id "com.ca.apim.gateway.gateway-export-plugin-base" version "0.6.51"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.ca.apim.gateway:gateway-export-plugin:0.6.51"
  }
}

apply plugin: "com.ca.apim.gateway.gateway-export-plugin-base"

Learn how to apply plugins to subprojects