Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.figaf.api-management-plugin") version "1.3.RELEASE"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.figaf:api-management-plugin:1.3.RELEASE")
      }
    }
    
    apply(plugin = "com.figaf.api-management-plugin")
  • Applying plugins to all subprojects .