cz.rixo.gradle.gitflow
                  Owner:
                  
                    
                    Rixo
                  
                
Plugin for incrementing version in git flow. Forked from
https://dev.azure.com/RIXO/RIXO/_git/rixo-gradle-git-flow-version-plugin
Sources: https://RIXO@dev.azure.com/RIXO/RIXO/_git/rixo-gradle-git-flow-version-plugin
Version 1.14.2.RELEASE
Created 02 November 2020.
                Plugin for incrementing version in git flow. Forked from 
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("cz.rixo.gradle.gitflow") version "1.14.2.RELEASE"
}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("cz.rixo.gradle.gitflow:cz.rixo.gradle.gitflow.gradle.plugin:1.14.2.RELEASE") }It can then be applied in the precompiled script plugin:plugins { id("cz.rixo.gradle.gitflow") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cz.rixo.gradle.gitflow:cz.rixo.gradle.gitflow.gradle.plugin:1.14.2.RELEASE") } } apply(plugin = "cz.rixo.gradle.gitflow")
- Applying plugins to all subprojects .