com.dorkbox.VersionUpdate
                  Owner:
                  
                    
                    Dorkbox LLC
                  
                
Plugin to set version information in maven POM, java or kotlin files, and git tags
https://git.dorkbox.com/dorkbox/VersionUpdate
Sources: https://git.dorkbox.com/dorkbox/VersionUpdate
Version 2.8 (latest)
Created 07 June 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.8"
}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.dorkbox.VersionUpdate:com.dorkbox.VersionUpdate.gradle.plugin:2.8") }It can then be applied in the precompiled script plugin:plugins { id("com.dorkbox.VersionUpdate") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.dorkbox.VersionUpdate:com.dorkbox.VersionUpdate.gradle.plugin:2.8") } } apply(plugin = "com.dorkbox.VersionUpdate")
- Applying plugins to all subprojects .