Search Gradle plugins

Version 0.2.3-dev05-154bcf0

0.2.3-dev05-154bcf0

Created 03 February 2021.

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 "0.2.3-dev05-154bcf0"
}

See also:

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