搜索Gradle插件

版本 7.0.1 (最新版)

7.0.1

创建于2022年4月7日。

YooMoney的Gradle插件。查看README:https://github.com/yoomoney/git-expired-branch-plugin

使用 插件DSL

plugins {
  id("ru.yoomoney.gradle.plugins.git-expired-branch-plugin") version "7.0.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("ru.yoomoney.gradle.plugins:git-expired-branch-plugin:7.0.1")
  }
}

apply(plugin = "ru.yoomoney.gradle.plugins.git-expired-branch-plugin")

使用 插件DSL

plugins {
  id "ru.yoomoney.gradle.plugins.git-expired-branch-plugin" version "7.0.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "ru.yoomoney.gradle.plugins:git-expired-branch-plugin:7.0.1"
  }
}

apply plugin: "ru.yoomoney.gradle.plugins.git-expired-branch-plugin"

了解如何将插件应用到子项目中