Search Gradle plugins

me.julb.gradleplugins.semanticversioning

Owner: Julien B

Provide a set of tasks to read and update version of your Gradle applications, specially in CI/CD.

https://github.com/julb/gradle-plugins/plugin-semantic-versioning

Sources: https://github.com/julb/gradle-plugins.git

Version 1.0.8 (latest)

Created 08 December 2021.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact Provide a set of tasks to read and update version of your Gradle applications, specially in CI/CD.

Add this plugin to your build using the plugins DSL:

plugins {
  id("me.julb.gradleplugins.semanticversioning") version "1.0.8"
}

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