Search Gradle plugins

Version 3.1.1-dev05-f42caf1

3.1.1-dev05-f42caf1

Created 31 January 2024.

A Gradle plugin that forces semantic versioning and relies on git to detect the project state

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.danilopianini.git-sensitive-semantic-versioning") version "3.1.1-dev05-f42caf1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.danilopianini:git-sensitive-semantic-versioning-gradle-plugin:3.1.1-dev05-f42caf1")
      }
    }
    
    apply(plugin = "org.danilopianini.git-sensitive-semantic-versioning")
  • Applying plugins to all subprojects .