Search Gradle plugins

Version 2.7

Created 10 February 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.7"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.dorkbox.VersionUpdate"

Learn how to apply plugins to subprojects