Search Gradle plugins

Using the plugins DSL:

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

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.25")
  }
}

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.6.25"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects