io.datalbry.plugin.semver
                  Owner:
                  
                    
                    Timo Gruen
                  
                
Simple plugin to update the gradle version property using the git history
Sources: https://github.com/datalbry/gradle-semver-plugin
Version 0.4.3
Created 16 March 2022.
                Simple plugin to update the gradle version property using the git history
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("io.datalbry.plugin.semver") version "0.4.3"
}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.datalbry.plugin.semver:io.datalbry.plugin.semver.gradle.plugin:0.4.3") }It can then be applied in the precompiled script plugin:plugins { id("io.datalbry.plugin.semver") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.datalbry.plugin.semver:io.datalbry.plugin.semver.gradle.plugin:0.4.3") } } apply(plugin = "io.datalbry.plugin.semver")
- Applying plugins to all subprojects .