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)

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.legyver.update-readme-version:com.legyver.update-readme-version.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.legyver.update-readme-version")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.legyver.update-readme-version:com.legyver.update-readme-version.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "com.legyver.update-readme-version")
  • Applying plugins to all subprojects .