搜索 Gradle 插件

com.legyver.update-readme-version

所有者: Benjamin Arnold

根据项目版本更新 README 文件中的库版本。实际上,这将仅自动更新标准 gradle 依赖项使用(不适用于短形式、maven、grape 等)

https://github.com/orgs/legyver-gradle-plugins/dashboard

来源: https://github.com/legyver-gradle-plugins/update-readme-version.git

版本 1.0.0 (最新版)

1.0.0

创建于 2022 年 6 月 18 日。

根据项目版本更新 README 文件中的库版本。实际上,这将仅自动更新标准 gradle 依赖项使用(不适用于短形式、maven、grape 等)

使用 plugins DSL

plugins {
  id("com.legyver.update-readme-version") version "1.0.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.legyver:update-readme-version:1.0.0")
  }
}

apply(plugin = "com.legyver.update-readme-version")

使用 plugins DSL

plugins {
  id "com.legyver.update-readme-version" version "1.0.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.legyver:update-readme-version:1.0.0"
  }
}

apply plugin: "com.legyver.update-readme-version"

学习如何将插件应用于子项目