com.github.rising3.semver
                  Owner:
                  
                    
                    Michio Nakagawa
                  
                
A plugin that can updating the semantic versions like `yarn version` command.
https://github.com/rising3/semver-gradle-plugin
Sources: https://github.com/rising3/semver-gradle-plugin.git
Version 0.8.0
Created 13 January 2022.
                A plugin that can updating the semantic versions like `yarn version` command.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.github.rising3.semver") version "0.8.0"
}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.rising3.semver:com.github.rising3.semver.gradle.plugin:0.8.0") }It can then be applied in the precompiled script plugin:plugins { id("com.github.rising3.semver") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.rising3.semver:com.github.rising3.semver.gradle.plugin:0.8.0") } } apply(plugin = "com.github.rising3.semver")
- Applying plugins to all subprojects .