Search Gradle plugins

Using the plugins DSL:

plugins {
  id("com.github.pivotalservices.cf-app") version "2.2.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.pivotalservices:ya-cf-app-gradle-plugin:2.2.0-SNAPSHOT")
  }
}

apply(plugin = "com.github.pivotalservices.cf-app")

Using the plugins DSL:

plugins {
  id "com.github.pivotalservices.cf-app" version "2.2.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.pivotalservices:ya-cf-app-gradle-plugin:2.2.0-SNAPSHOT"
  }
}

apply plugin: "com.github.pivotalservices.cf-app"

Learn how to apply plugins to subprojects