Search Gradle plugins

Version 0.8.1

0.8.1

Created 16 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.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.rising3:semver-gradle-plugin:0.8.1")
      }
    }
    
    apply(plugin = "com.github.rising3.semver")
  • Applying plugins to all subprojects .