Search Gradle plugins

Generate and update versioning based on specially tagged git commit message lines.

https://github.com/balage1551/semantic-versioning-gradle/

Sources: https://github.com/balage1551/semantic-versioning-gradle/

Version 0.9

Created 24 January 2024.

Generate and update versioning based on specially tagged git commit message lines.

Add this plugin to your build using the plugins DSL:

plugins {
  id("hu.vissy.gradle.semanticVersioning") version "0.9"
}

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("hu.vissy.gradle.semanticVersioning:hu.vissy.gradle.semanticVersioning.gradle.plugin:0.9")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("hu.vissy.gradle.semanticVersioning")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("hu.vissy.gradle.semanticVersioning:hu.vissy.gradle.semanticVersioning.gradle.plugin:0.9")
      }
    }
    
    apply(plugin = "hu.vissy.gradle.semanticVersioning")
  • Applying plugins to all subprojects .