Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.pivotalservices.cf-app") version "2.3.0-rc.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.pivotalservices:ya-cf-app-gradle-plugin:2.3.0-rc.2")
      }
    }
    
    apply(plugin = "com.github.pivotalservices.cf-app")
  • Applying plugins to all subprojects .