Search Gradle plugins

to.wetransform.semantic-release-version-custom

Gradle plugin that determines the current version based on information from Git and optionally a version file. Compared to the semantic-release-version plugin the behavior can be customized.

https://github.com/wetransform-os/gradle-semantic-release-version

Sources: https://github.com/wetransform-os/gradle-semantic-release-version

Version 2.1.2 (latest)

Created 05 September 2024.

Gradle plugin that determines the current version based on information from Git and optionally a version file. Compared to the semantic-release-version plugin the behavior can be customized.

Add this plugin to your build using the plugins DSL:

plugins {
  id("to.wetransform.semantic-release-version-custom") version "2.1.2"
}

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