Search Gradle plugins

Version 7.2.0

Created 08 April 2021.

Gradle project plugin

Using the plugins DSL:

plugins {
  id("ru.yoomoney.gradle.plugins.gradle-project-plugin") version "7.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.ru.yoomoney.gradle.plugins:gradle-project-plugin:7.2.0")
  }
}

apply(plugin = "ru.yoomoney.gradle.plugins.gradle-project-plugin")

Using the plugins DSL:

plugins {
  id "ru.yoomoney.gradle.plugins.gradle-project-plugin" version "7.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.ru.yoomoney.gradle.plugins:gradle-project-plugin:7.2.0"
  }
}

apply plugin: "ru.yoomoney.gradle.plugins.gradle-project-plugin"

Learn how to apply plugins to subprojects