Search Gradle plugins

Version 2.6

Created 25 January 2023.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.dorkbox:VersionUpdate:2.6")
  }
}

apply(plugin = "com.dorkbox.VersionUpdate")

Using the plugins DSL:

plugins {
  id "com.dorkbox.VersionUpdate" version "2.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.dorkbox:VersionUpdate:2.6"
  }
}

apply plugin: "com.dorkbox.VersionUpdate"

Learn how to apply plugins to subprojects