Search Gradle plugins

Version 8.2.0 (latest)

Created 06 April 2022.

Gradle project plugin

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ru.yoomoney.gradle.plugins:gradle-project-plugin:8.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 "8.2.0"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects