Search Gradle plugins

com.legyver.update-readme-version

Update the library version in your README files based on project version. In effect, this auto-updates the standard gradle dependency usage ONLY (not short form, or maven, or grape, etc)

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

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

Version 1.0.0 (latest)

Created 18 June 2022.

Update the library version in your README files based on project version. In effect, this auto-updates the standard gradle dependency usage ONLY (not short form, or maven, or grape, etc)

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects