Search Gradle plugins

Version 2.7

2.7

Created 10 February 2023.

Gradle Plugin to update version information and git tags within the Gradle project and java/kotlin files

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.dorkbox.VersionUpdate") version "2.7"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.dorkbox:VersionUpdate:2.7")
      }
    }
    
    apply(plugin = "com.dorkbox.VersionUpdate")
  • Applying plugins to all subprojects .