com.github.virtualcitysystems.semver
                  Owner:
                  
                    
                    Claus Nagel
                  
                
A gradle plugin allowing to automatically bump the patch version for a CI/CD process.
https://github.com/virtualcitySYSTEMS/gradle-plugin-semver
Sources: https://github.com/virtualcitySYSTEMS/gradle-plugin-semver
Version 1.0.2
Created 31 August 2021.
                A gradle plugin allowing to automatically bump the patch version for a CI/CD process.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.github.virtualcitysystems.semver") version "1.0.2"
}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.github.virtualcitysystems.semver:com.github.virtualcitysystems.semver.gradle.plugin:1.0.2") }It can then be applied in the precompiled script plugin:plugins { id("com.github.virtualcitysystems.semver") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.virtualcitysystems.semver:com.github.virtualcitysystems.semver.gradle.plugin:1.0.2") } } apply(plugin = "com.github.virtualcitysystems.semver")
- Applying plugins to all subprojects .