Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.figaf.cpi-plugin") version "1.5.SNAPSHOT"
}

See also:

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