io.wusa.semver-git-plugin
                  Owner:
                  
                    
                    Matthias
                  
                
Project versioning based on semantic versioning via git tags
https://github.com/ilovemilk/semver-git-plugin
Sources: https://github.com/ilovemilk/semver-git-plugin
Version 2.0.0-alpha
Created 19 September 2019.
                Project versioning based on semantic versioning via git tags
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("io.wusa.semver-git-plugin") version "2.0.0-alpha"
}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("io.wusa.semver-git-plugin:io.wusa.semver-git-plugin.gradle.plugin:2.0.0-alpha") }It can then be applied in the precompiled script plugin:plugins { id("io.wusa.semver-git-plugin") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.wusa.semver-git-plugin:io.wusa.semver-git-plugin.gradle.plugin:2.0.0-alpha") } } apply(plugin = "io.wusa.semver-git-plugin")
- Applying plugins to all subprojects .